Lines Matching refs:stat
2 Test stat() functions: usage variations - changing permissions of dir/file
13 * Prototype: array stat ( string $filename );
33 // checking stat() on file
34 echo "\n*** Testing stat() on file with miscelleneous file permission and content ***\n";
35 $old_stat = stat($filename);
37 // clear the stat
40 $new_stat = stat($filename);
44 // compare the stat
47 // clear the stat
50 // checking stat() on directory
51 echo "\n*** Testing stat() on directory with miscelleneous file permission ***\n";
52 $old_stat = stat($dirname);
54 // clear the stat
57 $new_stat = stat($dirname);
61 // compare the stat
64 // clear the stat
79 *** Testing stat() on file with miscelleneous file permission and content ***
85 *** Testing stat() on directory with miscelleneous file permission ***