php-src/ext/standard/tests/file/bug24313.phpt
2006-04-10 23:48:38 +00:00

11 lines
219 B
PHP

--TEST--
Bug #24313 (file_exists() warning on non-existant files when is open_basedir enabled)
--INI--
open_basedir=/tmp
--FILE--
<?php
var_dump(file_exists("/tmp/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)