php-src/ext/standard/tests/file/bug24313.phpt

11 lines
198 B
Plaintext
Raw Normal View History

--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)