You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
512 B

--TEST--
is_*() and file_exists() return values are boolean.
--FILE--
<?php
$funcs = array(
'is_writable',
'is_readable',
'is_executable',
'is_file',
'file_exists',
);
$filename="";
foreach ($funcs as $test) {
$bb = $test($filename);
echo gettype($bb)."\n";
clearstatcache();
}
$filename="run-tests.php";
foreach ($funcs as $test) {
$bb = $test($filename);
echo gettype($bb)."\n";
clearstatcache();
}
?>
--EXPECT--
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean
boolean