2

我正在尝试在 Mac OSX lion 上本地使用相对路径require_once

require_once('../../folder/file.php5');

它每次都会抛出一个错误:

PHP Warning: require_once(../../folder/file.php5): failed to open stream: 
No such file or directory in - on line 6 PHP Fatal error: require_once(): 
Failed opening required '../../folder/file.php5' (include_path='.:') in - on line 6

文件和文件夹结构与 Web 主机完全相同,并且可以正常工作。

require_once('../../folder/file.php5');

另一个奇怪的事情是我只能通过我的代码编辑器 CODA 预览来获得 PHP 错误。如果我在浏览器中加载相同的 URL,它会输出 PHP5 文件的正文,就像您在纯文本中看到的一样。

是什么原因导致上述失败?

4

1 回答 1

0

错误输出表明您的include_pathis .:。我怀疑这是问题所在,但是您是否尝试将其设置为 just .?或者在冒号之后放置另一条路径?(等等,.:/some/other/path

于 2012-06-01T03:42:37.850 回答