1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/ext/standard/tests/file/is_executable_error.phpt
Máté Kocsis 7aacc705d0 Add many missing closing PHP tags to tests
Closes GH-5958
2020-08-09 22:03:36 +02:00

14 lines
300 B
PHP

--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