0

我在 index.php 文件中使用 Include 函数来查找 header.html 文件并收到以下 2 个错误:

警告:include(includes/header.html): failed to open stream: No such file or directory in C:\wamp\www\Projects\Chapter Three\index.php on line 3

&

警告:include():在第 3 行的 C:\wamp\www\Projects\Chapter Three\index.php 中打开 'includes/header.html' 以包含 (include_path='.;C:\php\pear') 失败

我通过资源管理器验证了index.phpheader.html都在同一个目录中,所以我还应该检查什么?谢谢!

4

1 回答 1

0

您需要在包含 URL 周围加上引号,例如include 'home.html';,如果这不起作用,请尝试在 url 之前添加 /,include '/home.html';

于 2013-11-08T18:22:56.877 回答