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

11 lines
227 B
Plaintext
Raw Normal View History

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