Fixed test

This commit is contained in:
Ilia Alshanetsky 2006-04-10 23:48:10 +00:00
parent 45b64e7a99
commit 4bab5226b2

View File

@ -4,7 +4,7 @@ Bug #24313 (file_exists() warning on non-existant files when is open_basedir ena
open_basedir=/tmp
--FILE--
<?php
var_dump(file_exists("./foobar"));
var_dump(file_exists("/tmp/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)