Home
last modified time | relevance | path

Searched refs:use_include_path (Results 1 – 22 of 22) sorted by relevance

/PHP-8.0/ext/standard/tests/file/
H A Dfile_get_contents_file_put_contents_variation2.phpt2 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 Dfile_variation.phpt21 echo "*** Testing with variation in use_include_path argument ***\n";
125 *** Testing with variation in use_include_path argument ***
/PHP-8.0/ext/zlib/tests/
H A Dgzfile_variation3.phpt11 $use_include_path = false;
29 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation3.phpt11 $use_include_path = false;
29 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzfile_variation5.phpt11 $use_include_path = false;
23 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation5.phpt11 $use_include_path = false;
23 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzfile_variation7.phpt11 $use_include_path = false;
27 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation7.phpt11 $use_include_path = false;
27 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzfile_variation4.phpt11 $use_include_path = false;
24 var_dump(gzfile( $var , $use_include_path ) );
H A Dgzopen_basic.phpt17 $use_include_path = false;
20 $h = gzopen($filename, $mode, $use_include_path);
H A Dreadgzfile_variation4.phpt11 $use_include_path = false;
24 var_dump(readgzfile( $var , $use_include_path ) );
/PHP-8.0/ext/zlib/
H A Dzlib.stub.php17 function gzfile(string $filename, int $use_include_path = 0): array|false {} argument
20 function gzopen(string $filename, string $mode, int $use_include_path = 0) {} argument
22 function readgzfile(string $filename, int $use_include_path = 0): int|false {} argument
H A Dzlib_arginfo.h14 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 Dzlib.c615 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.0/ext/tidy/
H A Dtidy.c348 zend_bool use_include_path = 0; in php_tidy_quick_repair() local
355 Z_PARAM_BOOL(use_include_path) in php_tidy_quick_repair()
358 if (!(data = php_tidy_file_to_mem(ZSTR_VAL(arg1), use_include_path))) { in php_tidy_quick_repair()
1068 zend_bool use_include_path = 0; in PHP_FUNCTION() local
1079 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
1085 if (!(contents = php_tidy_file_to_mem(ZSTR_VAL(inputfile), use_include_path))) { in PHP_FUNCTION()
1362 zend_bool use_include_path = 0; in PHP_METHOD() local
1372 Z_PARAM_BOOL(use_include_path) in PHP_METHOD()
1401 zend_bool use_include_path = 0; in PHP_METHOD() local
1411 Z_PARAM_BOOL(use_include_path) in PHP_METHOD()
[all …]
/PHP-8.0/ext/phar/
H A Dfunc_interceptors.c97 zend_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 zend_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 zend_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.0/ext/standard/
H A Dfile.c382 zend_bool use_include_path = 0; in PHP_FUNCTION() local
397 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
401 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
526 zend_bool use_include_path = 0; in PHP_FUNCTION() local
539 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
555 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
727 zend_bool use_include_path; in PHP_FUNCTION() local
864 zend_bool use_include_path = 0; in PHP_FUNCTION() local
873 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
1324 zend_bool use_include_path = 0; in PHP_FUNCTION() local
[all …]
H A Dbasic_functions.stub.php759 function get_meta_tags(string $filename, bool $use_include_path = false): array|false {} argument
768 function readfile(string $filename, bool $use_include_path = false, $context = null): int|false {} argument
797 function fopen(string $filename, string $mode, bool $use_include_path = false, $context = null) {} argument
847 function file_get_contents(string $filename, bool $use_include_path = false, $context = null, int $… argument
H A Dbasic_functions_arginfo.h1181 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1195 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1233 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1307 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
/PHP-8.0/ext/spl/
H A Dspl_directory.c287 static int spl_filesystem_file_open(spl_filesystem_object *intern, int use_include_path, int silent… in spl_filesystem_file_open() argument
302 …tream_open_wrapper_ex(intern->file_name, intern->u.file.open_mode, (use_include_path ? USE_PATH : … in spl_filesystem_file_open()
481 zend_bool use_include_path = 0; in spl_filesystem_object_create_type() local
535 &open_mode, &open_mode_len, &use_include_path, &resource) == FAILURE in spl_filesystem_object_create_type()
564 if (spl_filesystem_file_open(intern, use_include_path, 0) == FAILURE) { in spl_filesystem_object_create_type()
2049 zend_bool use_include_path = 0; in PHP_METHOD() local
2061 &use_include_path, &intern->u.file.zcontext) == FAILURE) { in PHP_METHOD()
2074 if (spl_filesystem_file_open(intern, use_include_path, 0) == SUCCESS) { in PHP_METHOD()
/PHP-8.0/
H A DNEWS1545 . Removed the unused $use_include_path parameter from tidy_repair_string().
H A DUPGRADING652 . The $use_include_path parameter, which was not used internally, has been

Completed in 63 milliseconds