Lines Matching refs:tempnam
9 test_open_basedir_before("tempnam");
11 var_dump(tempnam("../bad", "test"));
12 var_dump(tempnam("..", "test"));
13 var_dump(tempnam("../", "test"));
14 var_dump(tempnam("/", "test"));
15 var_dump(tempnam("../bad/.", "test"));
16 var_dump(tempnam("./../.", "test"));
17 var_dump(tempnam("", "test"));
20 $file = tempnam($initdir."/test/ok", "test");
25 $file = tempnam(".", "test");
29 $file = tempnam("../ok", "test");
33 test_open_basedir_after("tempnam");
41 *** Testing open_basedir configuration [tempnam] ***
48 Warning: tempnam(): open_basedir restriction in effect. File(../bad) is not within the allowed path…
51 Warning: tempnam(): open_basedir restriction in effect. File(..) is not within the allowed path(s):…
54 Warning: tempnam(): open_basedir restriction in effect. File(../) is not within the allowed path(s)…
57 Warning: tempnam(): open_basedir restriction in effect. File(/) is not within the allowed path(s): …
60 Warning: tempnam(): open_basedir restriction in effect. File(../bad/.) is not within the allowed pa…
63 Warning: tempnam(): open_basedir restriction in effect. File(./../.) is not within the allowed path…
66 Warning: tempnam(): open_basedir restriction in effect. File() is not within the allowed path(s): (…
74 *** Finished testing open_basedir configuration [tempnam] ***