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