summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/bug24313.phpt
blob: dcea58ffef23e8a2b30ada18e8c67429920ce520 (plain)
1
2
3
4
5
6
7
8
9
10
--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)