Searched refs:is_readable (Results 1 – 25 of 33) sorted by relevance
12
2 Test is_readable() function: error conditions5 echo "\n*** Testing is_readable() on non-existent file ***\n";6 var_dump( is_readable(__DIR__."/is_readable.tmp") );11 *** Testing is_readable() on non-existent file ***
2 Test is_readable() function: usage variations - invalid file names11 echo "*** Testing is_readable(): usage variations ***\n";16 echo "\n*** Testing is_readable() on miscellaneous filenames ***\n";30 var_dump( is_readable($misc_file) );37 *** Testing is_readable(): usage variations ***39 *** Testing is_readable() on miscellaneous filenames ***
2 Test is_readable() function: usage variations - file/dir with diff. perms15 echo "*** Testing is_readable(): usage variations ***\n";20 echo "\n*** Testing is_readable() on directory without read permission ***\n";22 var_dump( is_readable("$file_path/is_readable_variation2") ); // exp: bool(false)25 echo "\n*** Testing miscellaneous input for is_readable() function ***\n";55 var_dump( is_readable($file) );71 *** Testing is_readable(): usage variations ***73 *** Testing is_readable() on directory without read permission ***76 *** Testing miscellaneous input for is_readable() function ***
2 Test is_readable() function: usage variations - diff. file notations9 /* test is_readable() with file having different filepath notation */12 echo "*** Testing is_readable(): usage variations ***\n";22 is_readable() function */50 var_dump( is_readable($file) );66 *** Testing is_readable(): usage variations ***
33 ["is_readable"]=>
8 'is_readable',
55 if (is_readable($fname)) {
52 if (is_readable('test.file')) {
2 Test is_readable() function: basic functionality14 echo "*** Testing is_readable(): basic functionality ***\n";17 $filename = __DIR__."/私はガラスを食べられますis_readable.tmp";22 using is_readable() */26 var_dump( is_readable($filename) );37 *** Testing is_readable(): basic functionality ***
2 Test is_readable() function: basic functionality14 echo "*** Testing is_readable(): basic functionality ***\n";17 $filename = __DIR__."/is_readable.tmp";22 using is_readable() */26 var_dump( is_readable($filename) );37 *** Testing is_readable(): basic functionality ***
2 Test is_readable() function: basic functionality15 echo "*** Testing is_readable(): basic functionality ***\n";18 $filename = __DIR__."/is_readable.tmp";23 using is_readable() */27 var_dump( is_readable($filename) );38 *** Testing is_readable(): basic functionality ***
8 test_open_basedir("is_readable");16 *** Testing open_basedir configuration [is_readable] ***23 Warning: is_readable(): open_basedir restriction in effect. File(../bad) is not within the allowed …26 Warning: is_readable(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the …29 Warning: is_readable(): open_basedir restriction in effect. File(..) is not within the allowed path…32 Warning: is_readable(): open_basedir restriction in effect. File(../) is not within the allowed pat…35 Warning: is_readable(): open_basedir restriction in effect. File(/) is not within the allowed path(…38 Warning: is_readable(): open_basedir restriction in effect. File(../bad/.) is not within the allowe…41 Warning: is_readable(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within…47 Warning: is_readable(): open_basedir restriction in effect. File(./../.) is not within the allowed …[all …]
32 if (is_readable($directory) == FALSE) {
2 bug #44859 (incorrect result with NTFS ACL permissions, is_readable)28 if (is_readable($path) == $exp) {31 var_dump(is_readable($path), $exp);44 if (is_readable($path) == $exp) {47 var_dump(is_readable($path), $exp);
2 bug #44859 (incorrect result with NTFS ACL permissions, is_readable)30 if (is_readable($path) == $exp) {33 var_dump(is_readable($path), $exp);46 if (is_readable($path) == $exp) {49 var_dump(is_readable($path), $exp);
115 Required to set no permission and check that is_readable()
16 var_dump(is_readable(FILENAME));23 var_dump(is_readable(FILENAME));30 var_dump(is_readable(FILENAME));
19 echo "is_readable=";20 var_dump(is_readable($srcFile));34 is_readable=bool(false)
2 Bug #71103 file_exists and is_readable fail silently31 is_readable($f),32 is_readable($foo_obj),
45 echo "is_readable\n";46 var_dump(is_readable("dir/file1.txt"));207 is_readable
37 var_dump(is_readable("mklink_junction"));
30 var_dump(is_readable("$fullpath\\mnt\\test\\mklink_symlink\b.php"));
290 fAccess = bucket->is_readable; in tsrm_win32_access()302 fAccess = bucket->is_readable; in tsrm_win32_access()308 fAccess = bucket->is_readable & bucket->is_writable; in tsrm_win32_access()339 bucket->is_readable = fAccess; in tsrm_win32_access()346 bucket->is_readable = fAccess; in tsrm_win32_access()
365 if (!is_readable($dir)) {
94 if (file_exists($file) && is_readable($file)) {
Completed in 53 milliseconds