php-src/ext/standard/tests/file/bug24313.phpt
Ilia Alshanetsky 4d349926ff Fixed some test names.
Removed extraneous \r from a number of tests.
2003-10-24 03:31:57 +00:00

11 lines
198 B
PHP

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