blob: 0893889a020fbf567fec493bd5681ce605495c62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--TEST--
Bug #24313 (file_exists() throws a warning on nonexistent files when is open_basedir enabled)
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip "/dev" is not available');
}
?>
--INI--
open_basedir=/dev
--FILE--
<?php
var_dump(file_exists("/dev/bogus_file_no_such_thing"));
?>
--EXPECT--
bool(false)
|