/PHP-7.4/Zend/ |
H A D | zend_virtual_cwd.h | 85 (len >= 2 && IS_SLASH(path[0]) && IS_SLASH(path[1])) 87 …(len >= 2 && (/* is local */isalpha(path[0]) && path[1] == ':' || /* is UNC */IS_SLASH(path[0]) &&… 263 #define VCWD_CHDIR(path) virtual_chdir(path) argument 270 #define VCWD_UNLINK(path) virtual_unlink(path) argument 289 #define VCWD_CREAT(path, mode) creat(path, mode) argument 305 #define VCWD_FOPEN(path, mode) fopen(path, mode) argument 306 #define VCWD_OPEN(path, flags) open(path, flags) argument 311 #define VCWD_UNLINK(path) unlink(path) argument 312 #define VCWD_CHDIR(path) chdir(path) argument 315 #define VCWD_CHMOD(path, mode) chmod(path, mode) argument [all …]
|
H A D | zend_virtual_cwd.c | 355 h ^= *path++; in realpath_cache_key() 377 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_del() 418 memcpy(bucket->path, path, path_len+1); in realpath_cache_add() 462 memcmp(path, (*bucket)->path, path_len) == 0) { in realpath_cache_find() 556 if (j == 0 && path[0] == '.' && path[1] == '.' && in tsrm_realpath_r() 563 path[j+1] == '.' && path[j+2] == '.' && in tsrm_realpath_r() 872 memmove(path+i, path, j+1); in tsrm_realpath_r() 929 memmove(path+i, path, j+1); in tsrm_realpath_r() 1248 if (!*path) { in virtual_realpath() 1255 } else if (!IS_ABSOLUTE_PATH(path, strlen(path))) { in virtual_realpath() [all …]
|
/PHP-7.4/ext/standard/tests/file/ |
H A D | basename_variation1-win32.phpt | 46 foreach ($paths as $path) { 47 $input = $prefix . $path; 57 basename for path A:/foo is: 59 basename for path A:/foo/ is: 61 basename for path A:/foo\ is: 77 basename for path Z:/foo is: 79 basename for path Z:/foo/ is: 81 basename for path Z:/foo\ is: 97 basename for path A:\foo is: 99 basename for path A:\foo/ is: [all …]
|
H A D | basename_variation1.phpt | 46 foreach ($paths as $path) { 47 $input = $prefix . $path; 57 basename for path A:/foo is: 59 basename for path A:/foo/ is: 61 basename for path A:/foo\ is: 77 basename for path Z:/foo is: 79 basename for path Z:/foo/ is: 81 basename for path Z:/foo\ is: 97 basename for path A:\foo is: 99 basename for path A:\foo/ is: [all …]
|
H A D | basename_variation2-win32.phpt | 41 foreach ($paths as $path) { 43 echo "basename for path $path, supplying suffix $suffix is:\n"; 44 var_dump(basename($path, $suffix)); 52 basename for path foo, supplying suffix .bar is: 54 basename for path foo, supplying suffix .b is: 56 basename for path foo, supplying suffix . is: 58 basename for path foo, supplying suffix is: 60 basename for path foo, supplying suffix foo is: 68 basename for path foo, supplying suffix / is: 70 basename for path foo, supplying suffix \ is: [all …]
|
H A D | basename_variation2.phpt | 41 foreach ($paths as $path) { 43 echo "basename for path $path, supplying suffix $suffix is:\n"; 44 var_dump(basename($path, $suffix)); 52 basename for path foo, supplying suffix .bar is: 54 basename for path foo, supplying suffix .b is: 56 basename for path foo, supplying suffix . is: 58 basename for path foo, supplying suffix is: 60 basename for path foo, supplying suffix foo is: 68 basename for path foo, supplying suffix / is: 70 basename for path foo, supplying suffix \ is: [all …]
|
H A D | glob_variation4.phpt | 5 $path = __DIR__; 7 ini_set('open_basedir', $path); 9 var_dump(glob("$path/*.none")); 10 var_dump(glob("$path/?.none")); 11 var_dump(glob("$path/*{hello,world}.none")); 12 var_dump(glob("$path/*/nothere")); 13 var_dump(glob("$path/[aoeu]*.none")); 14 var_dump(glob("$path/directly_not_exists")); 16 var_dump($path == ini_get('open_basedir'));
|
H A D | userwrapper.phpt | 22 function url_stat($path, $options) { 26 print "Stating file: $path\n"; 36 unlink('test://example.com/path/to/file'); 37 rename('test://example.com/path/to/from', 'test://example.com/path/to/to'); 39 @rename('test://example.com/path/to/from', 'http://example.com/path/to/to'); 40 mkdir('test://example.com/path/to/directory', 0755); 41 rmdir('test://example.com/path/to/directory'); 42 print_r(stat('test://example.com/path/to/file')); 47 Unlinking file: test://example.com/path/to/file 48 Renaming test://example.com/path/to/from to test://example.com/path/to/to [all …]
|
H A D | glob_variation3.phpt | 5 $path = __DIR__; 9 var_dump(glob("$path/*.none")); 10 var_dump(glob("$path/?.none")); 11 var_dump(glob("$path/*{hello,world}.none")); 12 var_dump(glob("$path/*/nothere")); 13 var_dump(glob("$path/[aoeu]*.none")); 14 var_dump(glob("$path/directly_not_exists"));
|
H A D | touch_variation5.phpt | 69 foreach($paths as $path) { 72 if (is_dir($path) || is_file($path)) { 76 $res = touch($path); 86 unlink($path); 103 unlink($path); 112 foreach($paths as $path) { 117 rmdir($path); 125 unlink($path); 132 function test_path($path) { 136 $res = touch($path,0,0); [all …]
|
H A D | glob_variation6.phpt | 7 $path = __DIR__; 11 var_dump(glob("$path/*.none")); 12 var_dump(glob("$path/?.none")); 13 var_dump(glob("$path/*{hello,world}.none")); 14 var_dump(glob("$path/*/nothere")); 15 var_dump(glob("$path/[aoeu]*.none")); 16 var_dump(glob("$path/directly_not_exists"));
|
/PHP-7.4/main/streams/ |
H A D | glob_wrapper.c | 42 char *path; member 56 return pglob->path; in _php_glob_stream_get_path() 107 path = pos+1; in php_glob_stream_path_split() 111 path = pos+1; in php_glob_stream_path_split() 115 *p_file = path; in php_glob_stream_path_split() 118 if (pglob->path) { in php_glob_stream_path_split() 122 path--; in php_glob_stream_path_split() 134 const char *path; in php_glob_stream_read() local 140 PHP_STRLCPY(ent->d_name, path, sizeof(ent->d_name), strlen(path)); in php_glob_stream_read() 209 *opened_path = zend_string_init(path, strlen(path), 0); in php_glob_stream_opener() [all …]
|
/PHP-7.4/ext/standard/tests/file/windows_acls/ |
H A D | bug44859_4.phpt | 27 create_file($path, $perms); 28 clearstatcache(true, $path); 30 if (is_readable($path) == $exp) { 33 var_dump(is_readable($path), $exp); 36 delete_file($path); 40 $path = $uniqueBaseName . '_dir'; 43 create_dir($path, $perms); 44 clearstatcache(true, $path); 46 if (is_readable($path) == $exp) { 52 delete_dir($path); [all …]
|
H A D | bug44859.phpt | 23 $path = $uniqueBasePath . '_file.txt'; 25 create_file($path, $perms); 26 clearstatcache(true, $path); 28 if (is_writable($path) == $exp) { 31 var_dump(is_writable($path), $exp); 34 delete_file($path); 38 $path = $uniqueBasePath . '_dir'; 41 create_dir($path, $perms); 42 clearstatcache(true, $path); 44 if (is_writable($path) == $exp) { [all …]
|
H A D | bug44859_2.phpt | 23 $path = $uniqueBasePath . '_file.txt'; 25 create_file($path, $perms); 26 clearstatcache(true, $path); 28 if (is_readable($path) == $exp) { 31 var_dump(is_readable($path), $exp); 34 delete_file($path); 38 $path = $uniqueBasePath . '_dir'; 41 create_dir($path, $perms); 42 clearstatcache(true, $path); 44 if (is_readable($path) == $exp) { [all …]
|
/PHP-7.4/ext/standard/tests/url/ |
H A D | bug74780.phpt | 6 parse_url('//php.net/path?query=1:2'), 7 parse_url('//php.net/path.php?query=a:b'), 8 parse_url('//username@php.net/path?query=1:2') 16 ["path"]=> 17 string(5) "/path" 24 ["path"]=> 25 string(9) "/path.php" 34 ["path"]=> 35 string(5) "/path"
|
H A D | parse_url_basic_001.phpt | 25 ["path"]=> 41 ["path"]=> 46 ["path"]=> 55 ["path"]=> 60 ["path"]=> 65 ["path"]=> 81 ["path"]=> 86 ["path"]=> 91 ["path"]=> 107 ["path"]=> [all …]
|
H A D | parse_url_unterminated.phpt | 27 ["path"]=> 43 ["path"]=> 48 ["path"]=> 57 ["path"]=> 62 ["path"]=> 67 ["path"]=> 83 ["path"]=> 88 ["path"]=> 93 ["path"]=> 109 ["path"]=> [all …]
|
H A D | bug54180.phpt | 2 Bug #54180 (parse_url() incorrectly parses path when ? in fragment) 6 var_dump(parse_url("http://example.com/path/script.html?t=1#fragment?data")); 7 var_dump(parse_url("http://example.com/path/script.html#fragment?data")); 16 ["path"]=> 17 string(17) "/path/script.html" 28 ["path"]=> 29 string(17) "/path/script.html"
|
/PHP-7.4/ext/standard/tests/dir/ |
H A D | readdir_basic.phpt | 20 $path = __DIR__ . '/readdir_basic'; 21 mkdir($path); 22 create_files($path, 3); 24 echo "\n-- Call readdir() with \$path argument --\n"; 25 var_dump($dh = opendir($path)); 36 var_dump($dh = opendir($path)); 46 delete_files($path, 3); 52 $path = __DIR__ . '/readdir_basic'; 53 rmdir($path); 58 -- Call readdir() with $path argument -- [all …]
|
H A D | opendir_variation4.phpt | 29 echo "\n-- \$path = './level_one': --\n"; 39 echo "\n-- \$path = '..': --\n"; 48 echo "\n-- \$path = '../': --\n"; 52 echo "\n-- \$path = './': --\n"; 84 -- $path = './level_one': -- 88 -- $path = 'level_one/level_two': -- 92 -- $path = '..': -- 95 -- $path = 'level_two', '.': -- 99 -- $path = '../': -- 102 -- $path = './': -- [all …]
|
H A D | readdir_basic-win32-mb.phpt | 26 $path = __DIR__ . '/私はガラスを食べられますreaddir_basic'; 27 mkdir($path); 28 create_files($path, 3); 30 echo "\n-- Call readdir() with \$path argument --\n"; 31 var_dump($dh = opendir($path)); 42 var_dump($dh = opendir($path)); 52 delete_files($path, 3); 58 $path = __DIR__ . '/私はガラスを食べられますreaddir_basic'; 59 rmdir($path); 64 -- Call readdir() with $path argument -- [all …]
|
H A D | opendir_variation4-win32-mb.phpt | 35 echo "\n-- \$path = './私はガラスを食べられますlevel_one': --\n"; 45 echo "\n-- \$path = '..': --\n"; 49 echo "\n-- \$path = 'level_two', '.': --\n"; 54 echo "\n-- \$path = '../': --\n"; 58 echo "\n-- \$path = './': --\n"; 90 -- $path = './私はガラスを食べられますlevel_one': -- 98 -- $path = '..': -- 101 -- $path = 'level_two', '.': -- 105 -- $path = '../': -- 108 -- $path = './': -- [all …]
|
/PHP-7.4/main/ |
H A D | fopen_wrappers.h | 31 PHPAPI int php_check_open_basedir(const char *path); 32 PHPAPI int php_check_open_basedir_ex(const char *path, int warn); 33 PHPAPI int php_check_specific_open_basedir(const char *basedir, const char *path); 38 PHPAPI int php_check_safe_mode_include_dir(const char *path); 40 PHPAPI zend_string *php_resolve_path(const char *filename, size_t filename_len, const char *path); 42 PHPAPI FILE *php_fopen_with_path(const char *filename, const char *mode, const char *path, zend_str… 44 PHPAPI char *php_strip_url_passwd(char *path);
|
/PHP-7.4/ext/session/tests/ |
H A D | session_get_cookie_params_variation1.phpt | 47 ["path"]=> 61 ["path"]=> 75 ["path"]=> 76 string(5) "/path" 89 ["path"]=> 90 string(5) "/path" 103 ["path"]=> 104 string(5) "/path" 117 ["path"]=> 118 string(5) "/path" [all …]
|