Lines Matching refs:path
22 echo "Testing file with relative path:\n";
24 $path = './a.txt';
26 create_file($path, $perms);
27 clearstatcache(true, $path);
29 if (is_readable($path) == $exp) {
32 var_dump(is_readable($path), $exp);
35 delete_file($path);
38 echo "Testing directory with relative path:\n";
39 $path = 'adir';
42 create_dir($path, $perms);
43 clearstatcache(true, $path);
45 if (is_readable($path) == $exp) {
48 var_dump(is_readable($path), $exp);
51 delete_dir($path);
56 Testing file with relative path:
61 Testing directory with relative path: