Lines Matching refs:stat
2 Test stat() functions: usage variations - changing permissions of dir/file
28 // checking stat() on file
29 echo "\n*** Testing stat() on file with miscellaneous file permission and content ***\n";
31 $old_stat = stat($filename);
34 // clear the stat
36 $new_stat = stat($filename);
40 // compare the stat
43 // clear the stat
46 // checking stat() on directory
47 echo "\n*** Testing stat() on directory with miscellaneous file permission ***\n";
48 $old_stat = stat($dirname);
51 // clear the stat
53 $new_stat = stat($dirname);
57 // compare the stat
60 // clear the stat
73 *** Testing stat() on file with miscellaneous file permission and content ***
79 *** Testing stat() on directory with miscellaneous file permission ***