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

17 lines
327 B
Plaintext
Raw Normal View History

--TEST--
Bug #24313 (file_exists() throws a warning on nonexistent files when is open_basedir enabled)
2007-04-18 14:51:29 +00:00
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip "/dev" is not available');
}
?>
--INI--
2006-07-28 13:47:56 +00:00
open_basedir=/dev
--FILE--
<?php
2006-07-28 13:47:56 +00:00
var_dump(file_exists("/dev/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)