blob: c5e7a9cb0ec1cbf974bf5d7821f2cf534a9cbc5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--TEST--
Bug #52624 (tempnam() by-pass open_basedir with inexistent directory)
--INI--
open_basedir=.
--FILE--
<?php
echo tempnam("directory_that_not_exists", "prefix_");
?>
--EXPECTF--
Notice: tempnam(): file created in the system's temporary directory in %sbug52624.php on line %d
Warning: tempnam(): open_basedir restriction in effect. File(%s) is not within the allowed path(s): (%s) in %s on line %d
|