您可以看到不同的文件地址(1)和(2),我想在index.php中包含header.php,但是显示错误,我在index.php中使用了普通代码:。抱歉,无法正常工作。
(1)本地主机/文件夹1 / index.php (2)本地主机/folder2/header.php
请帮助我。
答案 0 :(得分:0)
在index.php中,您应该放
<?php
include '../folder2/header.php';
?>
答案 1 :(得分:0)
index.php:
<?php
include __DIR__ . "/../folder2/header.php";
?>
当在当前目录而不是文件夹localhost/folder1
上执行index.php时,这也将起作用。