Lines Matching refs:touch
2 Test touch() function : basic functionality
14 /* Prototype : proto bool touch(string filename [, int time [, int atime]])
20 echo "*** Testing touch() : basic functionality ***\n";
24 echo "\n--- testing touch creates a file ---\n";
29 var_dump( touch($filename) );
34 echo "\n --- testing touch doesn't alter file contents ---\n";
39 touch($filename);
44 echo "\n\n --- testing touch alters the correct file metadata ---\n";
48 touch($filename);
65 // Calling touch() with all possible arguments
66 echo "\n --- testing touch using all parameters ---\n";
67 var_dump( touch($filename, $time, $atime) );
79 *** Testing touch() : basic functionality ***
81 --- testing touch creates a file ---
84 --- testing touch doesn't alter file contents ---
87 --- testing touch alters the correct file metadata ---
92 --- testing touch using all parameters ---