Lines Matching refs:file

9 test_open_basedir_before("file");
10 test_open_basedir_error("file");
12 var_dump(file("ok.txt"));
13 var_dump(file("../ok/ok.txt"));
14 var_dump(file($initdir."/test/ok/ok.txt"));
15 var_dump(file($initdir."/test/ok/../ok/ok.txt"));
17 test_open_basedir_after("file");
25 *** Testing open_basedir configuration [file] ***
32 Warning: file(): open_basedir restriction in effect. File(../bad) is not within the allowed path(s)…
34 Warning: file(../bad): failed to open stream: %s in %s on line %d
37 Warning: file(): open_basedir restriction in effect. File(../bad/bad.txt) is not within the allowed…
39 Warning: file(../bad/bad.txt): failed to open stream: %s in %s on line %d
42 Warning: file(): open_basedir restriction in effect. File(..) is not within the allowed path(s): (.…
44 Warning: file(..): failed to open stream: %s in %s on line %d
47 Warning: file(): open_basedir restriction in effect. File(../) is not within the allowed path(s): (…
49 Warning: file(../): failed to open stream: %s in %s on line %d
52 Warning: file(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (.)…
54 Warning: file(/): failed to open stream: %s in %s on line %d
57 Warning: file(): open_basedir restriction in effect. File(../bad/.) is not within the allowed path(…
59 Warning: file(../bad/.): failed to open stream: %s in %s on line %d
62 Warning: file(): open_basedir restriction in effect. File(%s/test/bad/bad.txt) is not within the al…
64 Warning: file(%s/test/bad/bad.txt): failed to open stream: %s in %s on line %d
67 Warning: file(): open_basedir restriction in effect. File(%s/test/bad/../bad/bad.txt) is not within…
69 Warning: file(%s/test/bad/../bad/bad.txt): failed to open stream: %s in %s on line %d
87 *** Finished testing open_basedir configuration [file] ***