/PHP-8.0/tests/security/ |
H A D | open_basedir_touch.phpt | 9 test_open_basedir_before("touch"); 11 var_dump(touch("../bad")); 12 var_dump(touch("../bad/bad.txt")); 13 var_dump(touch("..")); 14 var_dump(touch("../")); 15 var_dump(touch("/")); 16 var_dump(touch("../bad/.")); 18 var_dump(touch("./../.")); 21 var_dump(touch("./ok.txt")); 22 var_dump(touch("ok.txt")); [all …]
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | touch_basic-win32.phpt | 2 Test touch() function : basic functionality 15 $filename = __DIR__."/touch.dat"; 17 echo "\n--- testing touch creates a file ---\n"; 22 var_dump( touch($filename) ); 32 touch($filename); 41 touch($filename); 58 // Calling touch() with all possible arguments 60 var_dump( touch($filename, $time, $atime) ); 72 *** Testing touch() : basic functionality *** 74 --- testing touch creates a file --- [all …]
|
H A D | touch_basic-win32-mb.phpt | 2 Test touch() function : basic functionality 13 echo "*** Testing touch() : basic functionality ***\n"; 17 echo "\n--- testing touch creates a file ---\n"; 22 var_dump( touch($filename) ); 32 touch($filename); 41 touch($filename); 58 // Calling touch() with all possible arguments 60 var_dump( touch($filename, $time, $atime) ); 72 *** Testing touch() : basic functionality *** 74 --- testing touch creates a file --- [all …]
|
H A D | touch.phpt | 2 touch() tests 14 $filename = __DIR__."/touch.dat"; 16 var_dump(touch($filename)); 19 var_dump(touch($filename, 101)); 23 var_dump(touch($filename, -1)); 27 var_dump(touch($filename, 100, 100)); 31 var_dump(touch($filename, 100, -100)); 34 var_dump(touch("/no/such/file/or/directory")); 39 touch("/no/such/file/or/directory", null, 1599492068); 58 Warning: touch(): Unable to create file /no/such/file/or/directory because %s in %s on line %d [all …]
|
H A D | touch_basic.phpt | 2 Test touch() function : basic functionality 14 echo "*** Testing touch() : basic functionality ***\n"; 18 echo "\n--- testing touch creates a file ---\n"; 23 var_dump( touch($filename) ); 33 touch($filename); 42 touch($filename); 59 // Calling touch() with all possible arguments 61 var_dump( touch($filename, $time, $atime) ); 73 *** Testing touch() : basic functionality *** 75 --- testing touch creates a file --- [all …]
|
H A D | userstreams_007.phpt | 24 touch("test://testdir/touch"); 25 touch("test://testdir/touch", 1); 26 touch("test://testdir/touch", 1, 2); 35 metadata: test://testdir/touch, 1 37 metadata: test://testdir/touch, 1 39 metadata: test://testdir/touch, 1
|
H A D | 005_variation2.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 29 echo "*** Testing fileattime(), filemtime(), filectime() & touch() : usage variations ***\n"; 30 echo "\n*** testing touch ***\n"; 31 $a = touch(NULL); 32 $b = touch(false); 33 $c = touch(''); 34 $d = touch(' '); 35 $e = touch('|'); 56 *** Testing fileattime(), filemtime(), filectime() & touch() : usage variations *** 58 *** testing touch ***
|
H A D | 005_variation2-win32.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : usage variation 36 echo "\n*** testing touch ***"; 37 var_dump(touch(NULL)); 38 var_dump(touch(false)); 39 var_dump(touch('')); 42 var_dump(touch(' ')); 43 var_dump(touch('|')); 49 *** Testing fileattime(), filemtime(), filectime() & touch() : usage variations *** 89 *** testing touch ***bool(false) 93 Warning: touch(): %s in %s on line %d [all …]
|
H A D | lstat_stat_variation4.phpt | 2 Test lstat() and stat() functions: usage variations - effects of touch() on file 9 /* test the effects of touch() on stats of file */ 21 // touch a file check stat, there should be difference in atime 22 echo "*** Testing stat() for file after using touch() on the file ***\n"; 27 var_dump( touch($file_name) ); 48 *** Testing stat() for file after using touch() on the file ***
|
H A D | lstat_stat_variation5.phpt | 2 Test lstat() and stat() functions: usage variations - effects of touch() on dir 12 /* test the effects of touch() on stats of dir */ 24 // touch a directory and check stat, there should be difference in atime 25 echo "*** Testing stat() for directory after using touch() on the directory ***\n"; 30 var_dump( touch($dir_name) ); 51 *** Testing stat() for directory after using touch() on the directory ***
|
H A D | touch_error.phpt | 2 touch() error tests 8 var_dump(touch("/no/such/file/or/directory")); 12 Warning: touch(): Unable to create file /no/such/file/or/directory because No such file or director…
|
H A D | touch_variation2.phpt | 2 touch() - ensure touch does not delete existing file. 14 var_dump(touch($filename, 101));
|
H A D | lstat_stat_variation6.phpt | 2 Test lstat() and stat() functions: usage variations - effects of touch() on link 21 /* test the effects of touch() on stats of link */ 35 // touch a link, check stat, there should be difference in atime 36 echo "*** Testing lstat() for link after using touch() on the link ***\n"; 43 var_dump( touch($link_name) ); 66 *** Testing lstat() for link after using touch() on the link ***
|
H A D | touch_variation1.phpt | 2 touch() with times 16 var_dump(touch($filename, 101)); 23 var_dump(touch($filename, 100, 102));
|
H A D | bug45985.phpt | 2 Bug #35740 (touch() opened file raises a warning) 8 touch($file);
|
H A D | touch_variation5-win32.phpt | 2 Test touch() function : variation: various valid and invalid paths 46 echo "*** Testing touch() : variation ***\n"; 70 $res = touch($path); 85 echo "FAILED: $path - touch returned true, nothing there\n"; 92 echo "FAILED: $path - touch returned false, something there\n"; 130 $res = touch($path,0,0); 148 *** Testing touch() : variation *** 162 Warning: touch(): Unable to create file BADDIR/aSubDirOrFile because %s in %s on line %d 171 Warning: touch(): Unable to create file %s/BADDIR/aSubDirOrFile because %s in %s on line %d 174 Warning: touch(): Unable to create file touchVar5.tmp/aSubDirOrFile/ because %s in %s on line %d [all …]
|
H A D | touch_variation5.phpt | 2 Test touch() function : variation: various valid and invalid paths 46 echo "*** Testing touch() : variation ***\n"; 70 $res = touch($path); 85 echo "FAILED: $path - touch returned true, nothing there\n"; 92 echo "FAILED: $path - touch returned false, something there\n"; 130 $res = touch($path,0,0); 148 *** Testing touch() : variation *** 162 Warning: touch(): Unable to create file BADDIR/aSubDirOrFile because %s in %s on line %d 171 Warning: touch(): Unable to create file /%s/BADDIR/aSubDirOrFile because %s in %s on line %d 174 Warning: touch(): Unable to create file touchVar5.tmp/aSubDirOrFile/ because %s in %s on line %d [all …]
|
H A D | touch_variation6-win32.phpt | 2 Test touch() function : variation: various valid and invalid paths 52 echo "*** Testing touch() : variation ***\n"; 76 $res = touch($path); 91 echo "FAILED: $path - touch returned true, nothing there\n"; 98 echo "FAILED: $path - touch returned false, something there\n"; 136 $res = touch($path,0,0); 154 *** Testing touch() : variation *** 168 Warning: touch(): Unable to create file BADDIR\aSubDirOrFile because %s in %s on line %d 177 Warning: touch(): Unable to create file %s\BADDIR\aSubDirOrFile because %s in %s on line %d 180 Warning: touch(): Unable to create file touchVar5.tmp\aSubDirOrFile\ because %s in %s on line %d [all …]
|
H A D | 005_error.phpt | 2 Test fileatime(), filemtime(), filectime() & touch() functions : error conditions 13 var_dump( touch("/no/such/file/or/dir", 10) ); 30 Warning: touch(): Unable to create file /no/such/file/or/dir because No such file or directory in %…
|
H A D | is_file_variation1.phpt | 6 and the file created by touch() */ 33 /* created by touch() */ 34 touch($file_path."/is_file_variation1.tmp");
|
/PHP-8.0/ext/spl/tests/ |
H A D | dit_004.phpt | 7 touch($dir . '/file1'); 8 touch($dir . '/file2'); 9 touch($dir . '/file3');
|
H A D | RecursiveDirectoryIterator_getSubPathname_basic.phpt | 13 touch($targetDir . DIRECTORY_SEPARATOR . 'getSubPathname_test_2.tmp'); 14 touch(__DIR__ . DIRECTORY_SEPARATOR . $depth0 . DIRECTORY_SEPARATOR . $depth1 . DIRECTORY_SEPARATOR… 15 touch(__DIR__ . DIRECTORY_SEPARATOR . $depth0 . DIRECTORY_SEPARATOR . 'getSubPathname_test_1.tmp');
|
H A D | bug66405.phpt | 9 touch($td . '/file1.txt'); 10 touch($td . '/file2.md'); 12 touch($td . '/testsubdir/file3.csv');
|
H A D | bug51068.phpt | 5 touch('bug.51068'); 7 touch('bug.51068.dir/lvl2.bug.51068');
|
H A D | bug77263.phpt | 8 touch("$dir/file1"); 9 touch("$dir/subdir/file2");
|