0

基本上

file_get_contents('test.php')

完美运行。然而,

file_get_contents('/../test.php')

结果是"file_get_contents(/../xx.php) [function.file-get-contents]: failed to open stream: No such file or directory"

目录结构正确。

4

1 回答 1

3

你说目录结构是正确的,但读起来还是很奇怪:

file_get_contents('/../test.php')

你确定它不应该如下没有前导斜杠:

file_get_contents('../test.php')
于 2013-03-12T15:58:05.423 回答