php-src/ext/standard/tests/file/003.inc
foobar 2f12941fac - Made all is_*() functions to return only boolean values.
- Killed the "file not found" error for is_link(). (finally..)
2002-05-16 01:07:21 +00:00

28 lines
333 B
PHP

<?php
$funcs = array(
'is_writable',
'is_readable',
'is_executable',
'is_file',
'file_exists',
);
$filename="";
foreach ($funcs as $test) {
$bb = $test($filename);
var_dump($bb);
clearstatcache();
}
$filename="run-tests.php";
foreach ($funcs as $test) {
$bb = $test($filename);
var_dump($bb);
clearstatcache();
}
?>