Lines Matching refs:touch
9 test_open_basedir_before("touch");
11 var_dump(touch("../bad"));
12 var_dump(touch("../bad/bad.txt"));
13 var_dump(touch(".."));
14 var_dump(touch("../"));
15 var_dump(touch("/"));
16 var_dump(touch("../bad/."));
17 var_dump(touch("../bad/./bad.txt"));
18 var_dump(touch("./../."));
20 var_dump(touch($initdir."/test/ok/ok.txt"));
21 var_dump(touch("./ok.txt"));
22 var_dump(touch("ok.txt"));
23 var_dump(touch("../ok/ok.txt"));
24 var_dump(touch("../ok/./ok.txt"));
26 test_open_basedir_after("touch");
34 *** Testing open_basedir configuration [touch] ***
41 Warning: touch(): open_basedir restriction in effect. File(../bad) is not within the allowed path(s…
44 Warning: touch(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allowe…
47 Warning: touch(): open_basedir restriction in effect. File(..) is not within the allowed path(s): (…
50 Warning: touch(): open_basedir restriction in effect. File(../) is not within the allowed path(s): …
53 Warning: touch(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (.…
56 Warning: touch(): open_basedir restriction in effect. File(../bad/.) is not within the allowed path…
59 Warning: touch(): open_basedir restriction in effect. File(../bad/./bad.txt) is not within the allo…
62 Warning: touch(): open_basedir restriction in effect. File(./../.) is not within the allowed path(s…
69 *** Finished testing open_basedir configuration [touch] ***