Home
last modified time | relevance | path

Searched refs:directory (Results 51 – 75 of 579) sorted by relevance

12345678910>>...24

/PHP-7.1/ext/standard/tests/file/
H A Dlstat_stat_variation5.phpt26 /* create temp directory */
32 // touch a directory and check stat, there should be difference in atime
33 echo "*** Testing stat() for directory after using touch() on the directory ***\n";
59 *** Testing stat() for directory after using touch() on the directory ***
H A Drename_variation8.phpt10 Description: Renames a file or directory
26 echo "\n*** Testing rename() on existing directory ***\n";
36 echo "\n*** Testing rename() on non-existing directory ***\n";
54 Warning: rename(%s/non_existent_file.tmp,%s/rename_variation8_new.tmp): No such file or directory i…
59 *** Testing rename() on existing directory ***
64 *** Testing rename() on non-existing directory ***
66 Warning: rename(%s/non_existent_dir,%s/rename_basic_dir2): No such file or directory in %s on line …
H A Dchmod_variation3.phpt110 Error: 2 - chmod(): No such file or directory, %s(%d)
114 Error: 2 - chmod(): No such file or directory, %s(%d)
118 Error: 2 - chmod(): No such file or directory, %s(%d)
122 Error: 2 - chmod(): No such file or directory, %s(%d)
126 Error: 2 - chmod(): No such file or directory, %s(%d)
130 Error: 2 - chmod(): No such file or directory, %s(%d)
134 Error: 2 - chmod(): No such file or directory, %s(%d)
138 Error: 2 - chmod(): No such file or directory, %s(%d)
142 Error: 2 - chmod(): No such file or directory, %s(%d)
170 Error: 2 - chmod(): No such file or directory, %s(%d)
[all …]
H A Ddisk_total_space_error.phpt11 * Prototype: float disk_total_space( string $directory );
12 * Description: given a string containing a directory, this function
24 var_dump( disk_total_space( $file_path."/dir1" )); // Invalid directory
28 …r_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directory
47 Warning: disk_total_space(): No such file or directory in %s on line %d
H A Ddisk_free_space_error.phpt11 * Prototype: float disk_free_space( string directory )
12 * Description: Given a string containing a directory, this function will
26 var_dump( disk_free_space( $file_path."/dir1" )); // Invalid directory
31 var_dump( disk_free_space( $file_path."/disk_free_space.tmp" )); // file input instead of directory
58 Warning: disk_free_space(): No such file or directory in %s on line %d
61 Warning: diskfreespace(): No such file or directory in %s on line %d
H A Ddisk_free_space_basic.phpt12 * Prototype: float disk_free_space( string directory )
13 * Description: Given a string containing a directory, this function
20 echo "*** Testing with existing directory ***\n";
24 echo "*** Testing with newly created directory ***\n";
59 *** Testing with existing directory ***
62 *** Testing with newly created directory ***
H A Ddisk_total_space_error-win32.phpt11 * Prototype: float disk_total_space( string $directory );
12 * Description: given a string containing a directory, this function
24 var_dump( disk_total_space( $file_path."/dir1" )); // Invalid directory
28 …r_dump( disk_total_space( $file_path."/disk_total_space.tmp" )); // file input instead of directory
51 Warning: disk_total_space(): The directory name is invalid.
H A Dfseek_dir_basic.phpt2 Testing fseek() on a directory stream
21 echo "\ncall fseek() on directory resource:\n";
30 echo "\ncall fseek() with different arguments on directory resource:\n";
61 call fseek() on directory resource:
79 call fseek() with different arguments on directory resource:
H A Drename_variation2-win32.phpt12 Description: Renames a file or directory
20 /* Renaming a file and directory to numeric name */
21 echo "\n*** Testing rename() by renaming a file and directory to numeric name ***\n";
34 // renaming a directory to numeric name
53 *** Testing rename() by renaming a file and directory to numeric name ***
H A Dunlink_variation8.phpt142 Warning: unlink(BADDIR/file.tmp): No such file or directory in %s on line %d
145 Warning: unlink(BADDIR/file.tmp): No such file or directory in %s on line %d
148 Warning: unlink(BADDIR/file.tmp): No such file or directory in %s on line %d
169 Warning: unlink(/%s/BADDIR/file.tmp): No such file or directory in %s on line %d
172 Warning: unlink(/%s/BADDIR/file.tmp): No such file or directory in %s on line %d
178 Warning: unlink(unlinkVar8.tmp/file.tmp/): Not a directory in %s on line %d
181 Warning: unlink(unlinkVar8.tmp/file.tmp/): %s directory in %s on line %d
184 Warning: unlink(unlinkVar8.tmp/file.tmp/): Not a directory in %s on line %d
187 Warning: unlink(/%s/unlinkVar8.tmp/file.tmp/): Not a directory in %s on line %d
190 Warning: unlink(/%s/unlinkVar8.tmp/file.tmp/): %s directory in %s on line %d
[all …]
H A Dstat_variation1-win32-mb.phpt23 /* create temp file and directory */
30 echo "*** Testing stat(): on file and directory ater renaming them ***\n";
51 // renaming a directory
52 echo "-- Testing stat() for directory after being renamed --\n";
80 *** Testing stat(): on file and directory ater renaming them ***
86 -- Testing stat() for directory after being renamed --
H A Dstat_variation1-win32.phpt23 /* create temp file and directory */
30 echo "*** Testing stat(): on file and directory ater renaming them ***\n";
51 // renaming a directory
52 echo "-- Testing stat() for directory after being renamed --\n";
80 *** Testing stat(): on file and directory ater renaming them ***
86 -- Testing stat() for directory after being renamed --
H A Ddisk.phpt35 Warning: disk_free_space(): No such file or directory in %s on line %d
38 Warning: disk_total_space(): No such file or directory in %s on line %d
43 Warning: disk_free_space(): No such file or directory in %s on line %d
46 Warning: disk_total_space(): No such file or directory in %s on line %d
/PHP-7.1/ext/standard/tests/file/windows_links/
H A Dbug48746_2.phpt22 $dirname = __DIR__ . "\\mnt\\test\\directory";
30 exec("mklink /j mklink_junction directory", $output, $ret_val);
32 file_put_contents("$fullpath\\mnt\\test\\directory\\b.php", "<?php echo \"I am included.\n\" ?>");
34 print_r(scandir("$fullpath\\mnt\\test\\directory"));
36 unlink("$fullpath\\mnt\\test\\directory\\b.php");
39 rmdir(__DIR__ . "\\mnt\\test\\directory");
H A Dbug48746_1.phpt22 $dirname = __DIR__ . "\\mnt\\test\\directory";
30 exec("mklink /j mklink_junction directory", $output, $ret_val);
33 file_put_contents("$fullpath\\mnt\\test\\directory\\b.php", "<?php echo \"I am included.\n\" ?>");
34 require "$fullpath\\mnt\\test\\directory\\b.php";
38 var_dump(is_file("$fullpath\\mnt\\test\\directory\\b.php"));
40 unlink("$fullpath\\mnt\\test\\directory\\b.php");
44 rmdir(__DIR__ . "\\mnt\\test\\directory");
/PHP-7.1/ext/fileinfo/tests/
H A Dfinfo_open_001.phpt22 Warning: finfo_open(%s123): failed to open stream: No such file or directory in %s on line %d
24 Warning: finfo_open(%s123): failed to open stream: No such file or directory in %s on line %d
29 Warning: finfo_open(%s1): failed to open stream: No such file or directory in %s on line %d
31 Warning: finfo_open(%s1): failed to open stream: No such file or directory in %s on line %d
36 Warning: finfo_open(%sinexistent): failed to open stream: No such file or directory in %s on line %d
38 Warning: finfo_open(%sinexistent): failed to open stream: No such file or directory in %s on line %d
/PHP-7.1/ext/standard/tests/dir/
H A Dopendir_variation5.phpt21 * Description: Open a directory and return a dir_handle
33 /* create the temporary directory :
55 echo "\n-- After restricting 1st level parent directory --\n";
61 chmod($parent_dir_path, 0666); // restricting parent directory
63 echo "\n-- After restricting parent directory --\n";
81 // changing permissions for each temporary directory to delete them
93 -- After restricting 1st level parent directory --
98 -- After restricting parent directory --
H A Ddir_variation7.phpt21 * Prototype : object dir(string $directory[, resource $context])
34 /* create the temporary directory :
55 echo "-- After restricting 1st level parent directory --\n";
61 chmod($parent_dir_path, 0666); // restricting parent directory
62 echo "-- After restricting parent directory --\n";
75 // changing permissions for each temporary directory to delete them
86 -- After restricting 1st level parent directory --
90 -- After restricting parent directory --
H A Dscandir_variation5.phpt2 Test scandir() function : usage variations - different directory permissions
34 * create the temporary directory :
56 echo "\n-- After restricting 1st level parent directory --\n";
61 chmod($parent_dir_path, 0666); // restricting parent directory
63 echo "\n-- After restricting parent directory --\n";
73 // changing permissions for each temporary directory to delete them
85 -- After restricting 1st level parent directory --
92 -- After restricting parent directory --
H A Ddir_variation3.phpt2 Test dir() function : usage variations - different directory permissions
21 * Prototype : object dir(string $directory[, resource $context])
27 * Providing various permissions to the directory to be opened and checking
28 * to see if dir() function opens the directory successfully.
31 echo "*** Testing dir() : different directory permissions ***";
33 // create the temporary directory
38 /* different values for directory permissions */
76 // try read directory, expected : false
80 // close directory
88 // deleting temporary directory
[all …]
/PHP-7.1/ext/zlib/tests/
H A Dreadgzfile_variation5.phpt28 Warning: readgzfile(0): failed to open stream: No such file or directory in %s on line %d
31 Warning: readgzfile(1): failed to open stream: No such file or directory in %s on line %d
34 Warning: readgzfile(12345): failed to open stream: No such file or directory in %s on line %d
37 Warning: readgzfile(-2345): failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation5.phpt28 Warning: gzfile(0): failed to open stream: No such file or directory in %s on line %d
31 Warning: gzfile(1): failed to open stream: No such file or directory in %s on line %d
34 Warning: gzfile(12345): failed to open stream: No such file or directory in %s on line %d
37 Warning: gzfile(-2345): failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation7.phpt32 Warning: readgzfile(string): failed to open stream: No such file or directory in %s on line %d
35 Warning: readgzfile(string): failed to open stream: No such file or directory in %s on line %d
38 Warning: readgzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d
41 Warning: readgzfile(hello world): failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation7.phpt32 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
35 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
38 Warning: gzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d
41 Warning: gzfile(hello world): failed to open stream: No such file or directory in %s on line %d
/PHP-7.1/ext/phar/tests/
H A Dbug65414.phpt2 Bug #65414 Injection (A1) in .phar files magic .phar directory
32 .phar/injected-1.txt:Cannot create any files in magic ".phar" directory
33 /.phar/injected-2.txt:Cannot create any files in magic ".phar" directory
35 /.phar/:Cannot create any files in magic ".phar" directory

Completed in 109 milliseconds

12345678910>>...24