Lines Matching refs:touch
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) );
27 echo "\n --- testing touch doesn't alter file contents ---\n";
32 touch($filename);
37 echo "\n\n --- testing touch alters the correct file metadata ---\n";
41 touch($filename);
58 // Calling touch() with all possible arguments
59 echo "\n --- testing touch using all parameters ---\n";
60 var_dump( touch($filename, $time, $atime) );
72 *** Testing touch() : basic functionality ***
74 --- testing touch creates a file ---
77 --- testing touch doesn't alter file contents ---
80 --- testing touch alters the correct file metadata ---
84 --- testing touch using all parameters ---