blob: 1520eb4d209c5be5462b2473994dfe7244921aaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
--TEST--
Test is_readable() function: error conditions
--FILE--
<?php
/* Prototype: bool is_readable ( string $filename );
Description: Tells whether the filename is readable
*/
echo "\n*** Testing is_readable() on non-existent file ***\n";
var_dump( is_readable(__DIR__."/is_readable.tmp") );
echo "Done\n";
?>
--EXPECTF--
*** Testing is_readable() on non-existent file ***
bool(false)
Done
|