Home
last modified time | relevance | path

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

/php-src/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-src/ext/zlib/tests/
H A Dgzfile_variation5.phpt9 $use_include_path = false;
21 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation5.phpt9 $use_include_path = false;
21 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzfile_variation4.phpt9 $use_include_path = false;
22 var_dump(gzfile( $var , $use_include_path ) );
H A Dgzfile_variation7.phpt9 $use_include_path = false;
25 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation4.phpt9 $use_include_path = false;
22 var_dump(readgzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation7.phpt9 $use_include_path = false;
25 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzopen_basic.phpt13 $use_include_path = false;
16 $h = gzopen($filename, $mode, $use_include_path);
/php-src/ext/zlib/
H A Dzlib.stub.php172 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 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.c612 zend_long use_include_path = 0; in PHP_FUNCTION() local
615 …SS != zend_parse_parameters(ZEND_NUM_ARGS(), "p|l", &filename, &filename_len, &use_include_path)) { in PHP_FUNCTION()
619 if (use_include_path) { in PHP_FUNCTION()
652 zend_long use_include_path = 0; in PHP_FUNCTION() local
654 …ND_NUM_ARGS(), "ps|l", &filename, &filename_len, &mode, &mode_len, &use_include_path) == FAILURE) { in PHP_FUNCTION()
658 if (use_include_path) { in PHP_FUNCTION()
679 zend_long use_include_path = 0; in PHP_FUNCTION() local
681 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "p|l", &filename, &filename_len, &use_include_path) == … in PHP_FUNCTION()
685 if (use_include_path) { in PHP_FUNCTION()
/php-src/ext/tidy/
H A Dtidy.c295 bool use_include_path = 0; in php_tidy_quick_repair() local
302 Z_PARAM_BOOL(use_include_path) in php_tidy_quick_repair()
305 if (!(data = php_tidy_file_to_mem(ZSTR_VAL(arg1), use_include_path))) { in php_tidy_quick_repair()
1063 bool use_include_path = 0; in PHP_FUNCTION() local
1074 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
1077 if (!(contents = php_tidy_file_to_mem(ZSTR_VAL(inputfile), use_include_path))) { in PHP_FUNCTION()
1356 bool use_include_path = 0; in PHP_METHOD() local
1366 Z_PARAM_BOOL(use_include_path) in PHP_METHOD()
1403 bool use_include_path = 0; in PHP_METHOD() local
1413 Z_PARAM_BOOL(use_include_path) in PHP_METHOD()
[all …]
/php-src/ext/phar/
H A Dfunc_interceptors.c162 bool use_include_path = 0; in PHP_FUNCTION() local
189 …if (use_include_path || (!IS_ABSOLUTE_PATH(ZSTR_VAL(filename), ZSTR_LEN(filename)) && !strstr(ZSTR… in PHP_FUNCTION()
190 zend_string *name = phar_get_name_for_relative_paths(filename, use_include_path); in PHP_FUNCTION()
238 bool use_include_path = 0; in PHP_FUNCTION() local
249 …s_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS(), "P|br!", &filename, &use_include_path, &zcontext) =… in PHP_FUNCTION()
252 …if (use_include_path || (!IS_ABSOLUTE_PATH(ZSTR_VAL(filename), ZSTR_LEN(filename)) && !strstr(ZSTR… in PHP_FUNCTION()
253 zend_string *name = phar_get_name_for_relative_paths(filename, use_include_path); in PHP_FUNCTION()
284 bool use_include_path = 0; in PHP_FUNCTION() local
296 …AMS_QUIET, ZEND_NUM_ARGS(), "Ps|br!", &filename, &mode, &mode_len, &use_include_path, &zcontext) =… in PHP_FUNCTION()
299 …if (use_include_path || (!IS_ABSOLUTE_PATH(ZSTR_VAL(filename), ZSTR_LEN(filename)) && !strstr(ZSTR… in PHP_FUNCTION()
[all …]
/php-src/ext/standard/
H A Dfile.c242 bool use_include_path = 0; in PHP_FUNCTION() local
257 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
261 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
386 bool use_include_path = 0; in PHP_FUNCTION() local
399 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
415 (use_include_path ? USE_PATH : 0) | REPORT_ERRORS, in PHP_FUNCTION()
594 bool use_include_path; in PHP_FUNCTION() local
731 bool use_include_path = 0; in PHP_FUNCTION() local
740 Z_PARAM_BOOL(use_include_path) in PHP_FUNCTION()
1162 bool use_include_path = 0; in PHP_FUNCTION() local
[all …]
H A Dbasic_functions.stub.php2742 function get_meta_tags(string $filename, bool $use_include_path = false): array|false {}
2754 function readfile(string $filename, bool $use_include_path = false, $context = null): int|false {}
2790 function fopen(string $filename, string $mode, bool $use_include_path = false, $context = null) {}
2865 function file_get_contents(string $filename, bool $use_include_path = false, $context = null, int $…
H A Dbasic_functions_arginfo.h1179 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1193 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1231 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
1309 ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, use_include_path, _IS_BOOL, 0, "false")
/php-src/ext/spl/
H A Dspl_directory.c314 static zend_result spl_filesystem_file_open(spl_filesystem_object *intern, bool use_include_path) /… in spl_filesystem_file_open() argument
329 …x(ZSTR_VAL(intern->file_name), ZSTR_VAL(intern->u.file.open_mode), (use_include_path ? USE_PATH : … in spl_filesystem_file_open()
491 bool use_include_path = 0; in spl_filesystem_object_create_type() local
534 &open_mode, &use_include_path, &resource) == FAILURE in spl_filesystem_object_create_type()
560 if (spl_filesystem_file_open(intern, use_include_path) == FAILURE) { in spl_filesystem_object_create_type()
2016 bool use_include_path = 0; in PHP_METHOD() local
2024 &use_include_path, &intern->u.file.zcontext) == FAILURE) { in PHP_METHOD()
2034 zend_result retval = spl_filesystem_file_open(intern, use_include_path); in PHP_METHOD()

Completed in 70 milliseconds