summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/is_executable_error.phpt
blob: c8d296d93ef6899e04c25b9ff361340ac9cba184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--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