php-src/ext/standard/tests/file/bug24313.phpt
2003-06-24 13:56:25 +00:00

11 lines
197 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("./foobar"));
?>
--EXPECT--
bool(false)