1--TEST-- 2Test is_readable() function: error conditions 3--FILE-- 4<?php 5echo "\n*** Testing is_readable() on non-existent file ***\n"; 6var_dump( is_readable(__DIR__."/is_readable_error.tmp") ); 7 8echo "Done\n"; 9?> 10--EXPECT-- 11*** Testing is_readable() on non-existent file *** 12bool(false) 13Done 14