1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 10:12:18 +01:00

MFB51: fixed test

This commit is contained in:
Ilia Alshanetsky
2006-04-10 23:48:38 +00:00
parent c4b1606466
commit 490609ffc4

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)