php-src/ext/standard/tests/general_functions/bug41518.phpt
Steph Fox fa3d01975b - killed off UEXPECT
- E_DEPRECATED doesn't always allow stuff to pass?
2008-05-27 00:04:31 +00:00

31 lines
536 B
PHP

--TEST--
Bug #41518 (file_exists() warns of open_basedir restriction on non-existent file)
--SKIPIF--
<?php
/* let's use /tmp here */
$tmp_dir = "/tmp";
if (!is_dir($tmp_dir) || realpath($tmp_dir) !== $tmp_dir) {
die("skip");
}
?>
--INI--
open_basedir=/tmp/
--FILE--
<?php
$tmp_dir = "/tmp";
$tmp_file = $tmp_dir."/bug41418.tmp";
touch($tmp_file);
var_dump(file_exists($tmp_file)); //exists
var_dump(file_exists($tmp_file."nosuchfile")); //doesn't exist
@unlink($tmp_file);
echo "Done\n";
?>
--EXPECT--
bool(true)
bool(false)
Done