/PHP-8.1/ext/standard/tests/file/ |
H A D | file_get_contents_file_put_contents_variation2.phpt | 2 Test file_get_contents() and file_put_contents() functions : usage variations - use_include_path 6 /* Testing variation using use_include_path argument */ 10 echo "*** Testing with variation in use_include_path argument ***\n"; 41 *** Testing with variation in use_include_path argument ***
|
H A D | file_variation.phpt | 21 echo "*** Testing with variation in use_include_path argument ***\n"; 125 *** Testing with variation in use_include_path argument ***
|
/PHP-8.1/ext/zlib/tests/ |
H A D | gzfile_variation5.phpt | 9 $use_include_path = false; 21 var_dump(gzfile( $var , $use_include_path ) );
|
H A D | readgzfile_variation5.phpt | 9 $use_include_path = false; 21 var_dump(readgzfile( $var , $use_include_path ) );
|
H A D | gzfile_variation4.phpt | 9 $use_include_path = false; 22 var_dump(gzfile( $var , $use_include_path ) );
|
H A D | gzfile_variation7.phpt | 9 $use_include_path = false; 25 var_dump(gzfile( $var , $use_include_path ) );
|
H A D | readgzfile_variation4.phpt | 9 $use_include_path = false; 22 var_dump(readgzfile( $var , $use_include_path ) );
|
H A D | readgzfile_variation7.phpt | 9 $use_include_path = false; 25 var_dump(readgzfile( $var , $use_include_path ) );
|
H A D | gzopen_basic.phpt | 13 $use_include_path = false; 16 $h = gzopen($filename, $mode, $use_include_path);
|
/PHP-8.1/ext/zlib/ |
H A D | zlib.stub.php | 31 function gzfile(string $filename, int $use_include_path = 0): array|false {} argument 37 function gzopen(string $filename, string $mode, int $use_include_path = 0) {} argument 39 function readgzfile(string $filename, int $use_include_path = 0): int|false {} argument
|
H A D | zlib_arginfo.h | 14 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, IS_LONG, 0, "0") 20 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, IS_LONG, 0, "0") 25 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, IS_LONG, 0, "0")
|
H A D | zlib.c | 615 zend_long use_include_path = 0; in PHP_FUNCTION() local 618 …SS != zend_parse_parameters(ZEND_NUM_ARGS(), "p|l", &filename, &filename_len, &use_include_path)) { in PHP_FUNCTION() 622 if (use_include_path) { in PHP_FUNCTION() 655 zend_long use_include_path = 0; in PHP_FUNCTION() local 657 …ND_NUM_ARGS(), "ps|l", &filename, &filename_len, &mode, &mode_len, &use_include_path) == FAILURE) { in PHP_FUNCTION() 661 if (use_include_path) { in PHP_FUNCTION() 682 zend_long use_include_path = 0; in PHP_FUNCTION() local 684 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|l", &filename, &filename_len, &use_include_path) == … in PHP_FUNCTION() 688 if (use_include_path) { in PHP_FUNCTION()
|
/PHP-8.1/ext/tidy/ |
H A D | tidy.c | 331 bool use_include_path = 0; in php_tidy_quick_repair() local 338 Z_PARAM_BOOL(use_include_path) in php_tidy_quick_repair() 341 if (!(data = php_tidy_file_to_mem(ZSTR_VAL(arg1), use_include_path))) { in php_tidy_quick_repair() 418 static zend_string *php_tidy_file_to_mem(char *filename, bool use_include_path) in php_tidy_file_to_mem() argument 1049 bool use_include_path = 0; in PHP_FUNCTION() local 1060 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 1063 if (!(contents = php_tidy_file_to_mem(ZSTR_VAL(inputfile), use_include_path))) { in PHP_FUNCTION() 1344 bool use_include_path = 0; in PHP_METHOD() local 1354 Z_PARAM_BOOL(use_include_path) in PHP_METHOD() 1384 bool use_include_path = 0; in PHP_METHOD() local [all …]
|
/PHP-8.1/ext/phar/ |
H A D | func_interceptors.c | 97 bool use_include_path = 0; in PHAR_FUNC() local 122 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC() 154 if (use_include_path) { in PHAR_FUNC() 237 bool use_include_path = 0; in PHAR_FUNC() local 249 …_PARAMS_QUIET, ZEND_NUM_ARGS(), "p|br!", &filename, &filename_len, &use_include_path, &zcontext) =… in PHAR_FUNC() 252 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC() 278 if (use_include_path) { in PHAR_FUNC() 337 bool use_include_path = 0; in PHAR_FUNC() local 350 …_NUM_ARGS(), "ps|br!", &filename, &filename_len, &mode, &mode_len, &use_include_path, &zcontext) =… in PHAR_FUNC() 353 if (use_include_path || (!IS_ABSOLUTE_PATH(filename, filename_len) && !strstr(filename, "://"))) { in PHAR_FUNC() [all …]
|
/PHP-8.1/ext/standard/ |
H A D | file.c | 390 bool use_include_path = 0; in PHP_FUNCTION() local 405 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 409 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION() 534 bool use_include_path = 0; in PHP_FUNCTION() local 547 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 563 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION() 736 bool use_include_path; in PHP_FUNCTION() local 873 bool use_include_path = 0; in PHP_FUNCTION() local 882 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 1328 bool use_include_path = 0; in PHP_FUNCTION() local [all …]
|
H A D | basic_functions.stub.php | 1026 function get_meta_tags(string $filename, bool $use_include_path = false): array|false {} argument 1038 function readfile(string $filename, bool $use_include_path = false, $context = null): int|false {} argument 1074 function fopen(string $filename, string $mode, bool $use_include_path = false, $context = null) {} argument 1149 function file_get_contents(string $filename, bool $use_include_path = false, $context = null, int $… argument
|
H A D | basic_functions_arginfo.h | 1185 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1199 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1237 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1315 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
|
/PHP-8.1/ext/spl/ |
H A D | spl_directory.c | 309 static zend_result spl_filesystem_file_open(spl_filesystem_object *intern, bool use_include_path) /… in spl_filesystem_file_open() argument 324 …x(ZSTR_VAL(intern->file_name), ZSTR_VAL(intern->u.file.open_mode), (use_include_path ? USE_PATH : … in spl_filesystem_file_open() 486 bool use_include_path = 0; in spl_filesystem_object_create_type() local 537 &open_mode, &use_include_path, &resource) == FAILURE in spl_filesystem_object_create_type() 572 if (spl_filesystem_file_open(intern, use_include_path) == FAILURE) { in spl_filesystem_object_create_type() 2030 bool use_include_path = 0; in PHP_METHOD() local 2038 &use_include_path, &intern->u.file.zcontext) == FAILURE) { in PHP_METHOD() 2048 zend_result retval = spl_filesystem_file_open(intern, use_include_path); in PHP_METHOD()
|