/PHP-8.2/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.2/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.2/ext/zlib/ |
H A D | zlib.stub.php | 172 function gzfile(string $filename, int $use_include_path = 0): array|false {} argument 178 function gzopen(string $filename, string $mode, int $use_include_path = 0) {} argument 180 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.2/ext/tidy/ |
H A D | tidy.c | 282 bool use_include_path = 0; in php_tidy_quick_repair() local 289 Z_PARAM_BOOL(use_include_path) in php_tidy_quick_repair() 292 if (!(data = php_tidy_file_to_mem(ZSTR_VAL(arg1), use_include_path))) { in php_tidy_quick_repair() 374 static zend_string *php_tidy_file_to_mem(char *filename, bool use_include_path) in php_tidy_file_to_mem() argument 1067 bool use_include_path = 0; in PHP_FUNCTION() local 1078 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 1081 if (!(contents = php_tidy_file_to_mem(ZSTR_VAL(inputfile), use_include_path))) { in PHP_FUNCTION() 1361 bool use_include_path = 0; in PHP_METHOD() local 1371 Z_PARAM_BOOL(use_include_path) in PHP_METHOD() 1405 bool use_include_path = 0; in PHP_METHOD() local [all …]
|
/PHP-8.2/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.2/ext/standard/ |
H A D | file.c | 254 bool use_include_path = 0; in PHP_FUNCTION() local 269 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 273 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION() 398 bool use_include_path = 0; in PHP_FUNCTION() local 411 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 427 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION() 606 bool use_include_path; in PHP_FUNCTION() local 743 bool use_include_path = 0; in PHP_FUNCTION() local 752 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION() 1198 bool use_include_path = 0; in PHP_FUNCTION() local [all …]
|
H A D | basic_functions.stub.php | 1940 function get_meta_tags(string $filename, bool $use_include_path = false): array|false {} 1952 function readfile(string $filename, bool $use_include_path = false, $context = null): int|false {} 1988 function fopen(string $filename, string $mode, bool $use_include_path = false, $context = null) {} 2063 function file_get_contents(string $filename, bool $use_include_path = false, $context = null, int $…
|
H A D | basic_functions_arginfo.h | 1191 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1205 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1243 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false") 1321 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
|
/PHP-8.2/ext/spl/ |
H A D | spl_directory.c | 337 static zend_result spl_filesystem_file_open(spl_filesystem_object *intern, bool use_include_path) /… in spl_filesystem_file_open() argument 352 …x(ZSTR_VAL(intern->file_name), ZSTR_VAL(intern->u.file.open_mode), (use_include_path ? USE_PATH : … in spl_filesystem_file_open() 518 bool use_include_path = 0; in spl_filesystem_object_create_type() local 561 &open_mode, &use_include_path, &resource) == FAILURE in spl_filesystem_object_create_type() 587 if (spl_filesystem_file_open(intern, use_include_path) == FAILURE) { in spl_filesystem_object_create_type() 2048 bool use_include_path = 0; in PHP_METHOD() local 2052 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "P|Sbr!", &file_name, &open_mode, &use_include_path, &s… in PHP_METHOD() 2069 zend_result retval = spl_filesystem_file_open(intern, use_include_path); in PHP_METHOD()
|