| /PHP_TRUNK/ext/spl/internal/ |
| H A D | splfileobject.inc | 37 * @param $use_include_path Whether to search in include paths 42 function __construct($file_name, $open_mode = 'r', $use_include_path = false, $context = NULL) 44 $this->fp = fopen($file_name, $open_mode, $use_include_path, $context);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | spl.php | 963 * @param use_include_path whether to search include paths (don't use) 973 function openFile($mode = 'r', $use_include_path = false, $context = NULL) {/**/}
|
| H A D | spl_directory.c | 271 static int spl_filesystem_file_open(spl_filesystem_object *intern, int use_include_path, int silent TSRMLS_DC) /* {{{ */ argument 286 intern->u.file.stream = php_stream_open_wrapper_ex(intern->file_name, intern->u.file.open_mode, (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, NULL, intern->u.file.context); 467 zend_bool use_include_path = 0; local 536 &use_include_path, &intern->u.file.zcontext) == FAILURE) { 545 if (spl_filesystem_file_open(intern, use_include_path, 0 TSRMLS_CC) == FAILURE) { 1323 /* {{{ proto SplFileObject SplFileInfo::openFile([string mode = 'r' [, bool use_include_path [, resource context]]]) 1921 ZEND_ARG_INFO(0, use_include_path) 2269 /* {{{ proto void SplFileObject::__construct(string filename [, string mode = 'r' [, bool use_include_path [, resource context]]]]) 2274 zend_bool use_include_path = 0; local 2288 &use_include_path, [all...] |
| /PHP_TRUNK/ext/tidy/ |
| H A D | tidy.c | 300 ZEND_ARG_INFO(0, use_include_path) 316 ZEND_ARG_INFO(0, use_include_path) 557 zend_bool use_include_path = 0; local 563 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|Zsb", &arg1, &arg1_len, &config, &enc, &enc_len, &use_include_path) == FAILURE) { 566 if (!(data = php_tidy_file_to_mem(arg1, use_include_path, &data_len TSRMLS_CC))) { 570 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|Zsb", &arg1, &arg1_len, &config, &enc, &enc_len, &use_include_path) == FAILURE) { 637 static char *php_tidy_file_to_mem(char *filename, zend_bool use_include_path, int *len TSRMLS_DC) argument 642 if (!(stream = php_stream_open_wrapper(filename, "rb", (use_include_path ? USE_PATH : 0), NULL))) { 1269 /* {{{ proto boolean tidy_parse_file(string file [, mixed config_options [, string encoding [, bool use_include_path]]]) 1275 zend_bool use_include_path local 1588 zend_bool use_include_path = 0; local 1620 zend_bool use_include_path = 0; local [all...] |
| /PHP_TRUNK/ext/zlib/ |
| H A D | zlib.c | 532 /* {{{ proto array gzfile(string filename [, int use_include_path]) 541 long use_include_path = 0; local 544 if (SUCCESS != zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|l", &filename, &filename_len, &use_include_path)) { 548 if (use_include_path) { 573 /* {{{ proto resource gzopen(string filename, string mode [, int use_include_path]) 582 long use_include_path = 0; local 584 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &filename, &filename_len, &mode, &mode_len, &use_include_path) == FAILURE) { 588 if (use_include_path) { 601 /* {{{ proto int readgzfile(string filename [, int use_include_path]) 610 long use_include_path local [all...] |
| /PHP_TRUNK/ext/phar/ |
| H A D | func_interceptors.c | 99 zend_bool use_include_path = 0; local 116 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) { 120 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { 151 if (use_include_path) { 235 zend_bool use_include_path = 0; local 247 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "p|br!", &filename, &filename_len, &use_include_path, &zcontext) == FAILURE) { 250 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { 275 if (use_include_path) { 330 zend_bool use_include_path = 0; local 343 if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, "ps|br", &filename, &filename_len, &mode, &mode_len, &use_include_path, [all...] |
| /PHP_TRUNK/ext/standard/ |
| H A D | file.c | 370 /* {{{ proto array get_meta_tags(string filename [, bool use_include_path]) 376 zend_bool use_include_path = 0; local 388 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|b", &filename, &filename_len, &use_include_path) == FAILURE) { 393 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, 513 /* {{{ proto string file_get_contents(string filename [, bool use_include_path [, resource context [, long offset [, long maxlen]]]]) 520 zend_bool use_include_path = 0; local 529 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "p|br!ll", &filename, &filename_len, &use_include_path, &zcontext, &offset, &maxlen) == FAILURE) { 541 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, 717 zend_bool use_include_path; local 733 use_include_path 858 zend_bool use_include_path = 0; local 1355 zend_bool use_include_path = 0; local [all...] |
| H A D | basic_functions.c | 1071 ZEND_ARG_INFO(0, use_include_path) 1106 ZEND_ARG_INFO(0, use_include_path)
|