Lines Matching refs:touch
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) );
28 echo "\n --- testing touch doesn't alter file contents ---\n";
33 touch($filename);
38 echo "\n\n --- testing touch alters the correct file metadata ---\n";
42 touch($filename);
59 // Calling touch() with all possible arguments
60 echo "\n --- testing touch using all parameters ---\n";
61 var_dump( touch($filename, $time, $atime) );
73 *** Testing touch() : basic functionality ***
75 --- testing touch creates a file ---
78 --- testing touch doesn't alter file contents ---
81 --- testing touch alters the correct file metadata ---
86 --- testing touch using all parameters ---