Lines Matching refs:link

15 test_open_basedir_before("link");
18 var_dump(link($target, "../bad/link.txt"));
19 var_dump(link($target, "../link.txt"));
20 var_dump(link($target, "../bad/./link.txt"));
21 var_dump(link($target, "./.././link.txt"));
23 $link = ($initdir."/test/ok/link.txt");
24 var_dump(link("../bad/bad.txt", $link));
25 var_dump(link("../bad", $link));
26 var_dump(link("../bad/./bad.txt", $link));
27 var_dump(link("../bad/bad.txt", $link));
28 var_dump(link("./.././bad", $link));
32 var_dump(link($target, $link));
33 var_dump(unlink($link));
34 test_open_basedir_after("link");
42 *** Testing open_basedir configuration [link] ***
49 Warning: link(): open_basedir restriction in effect. File(%s/test/bad/link.txt) is not within the a…
52 Warning: link(): open_basedir restriction in effect. File(%s/test/link.txt) is not within the allow…
55 Warning: link(): open_basedir restriction in effect. File(%s/test/bad/link.txt) is not within the a…
58 Warning: link(): open_basedir restriction in effect. File(%s/test/link.txt) is not within the allow…
61 Warning: link(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the al…
64 Warning: link(): open_basedir restriction in effect. File(%s/test/bad) is not within the allowed pa…
67 Warning: link(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the al…
70 Warning: link(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the al…
73 Warning: link(): open_basedir restriction in effect. File(%s/test/bad) is not within the allowed pa…
77 *** Finished testing open_basedir configuration [link] ***