Lines Matching refs:stored
18 /* test for stats of dir/file when their names are stored in an array */
31 echo "*** Testing stat() with filename & directory name stored inside an array ***\n";
45 echo "\n-- Testing stat() on filename stored inside an array --\n";
46 var_dump( stat($names[0]) ); // values stored with numeric index
47 var_dump( stat($names_with_key['file']) ); // value stored with string key
49 echo "\n-- Testing stat() on dir name stored inside an array --\n";
50 var_dump( stat($names[1]) ); // values stored with numeric index
51 var_dump( stat($names_with_key["dir"]) ); // value stored with string key
62 *** Testing stat() with filename & directory name stored inside an array ***
64 -- Testing stat() on filename stored inside an array --
174 -- Testing stat() on dir name stored inside an array --