我正在使用 require_once 调用一个脚本,该脚本将为每个页面的页脚回显 HTML。我让每个页面在 URL 中提交一个变量,以便 PHP 文件通过 $_GET 检索,但是因为它没有看到具有完整 URL 名称(包括变量)的文件,所以它不起作用。这里有什么解决方法吗?
错误:
Warning: require_once(footer/footer.php?page=homepage) [function.require-once]: failed to open stream: No such file or directory in /home/content/05/10838405/html/index.php on line 434
如果我删除 '?page=homepage' 它会完美运行。