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