Lines Matching refs:file_get_contents

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