这不起作用有两个原因是因为当您使用“/”包含其他 PHP 文件时将引用 index.php 的“/”因此在所有包含中您必须将“/”更改为 __DIR__
以及 index.php 中的这个使用include ('/app/app.php');将无法找到正确的当前目录,因此对于您的特定情况,将代码更改为:
索引.php:
<?php
include ('.\app\app.php');
?>
应用程序.php:
<?php
include(__DIR__.'\template\template.php');
?>
模板\模板.php :
<?php
// Load our Head
include (__DIR__.'\parts\head.php');
// Load our Header
include (__DIR__.'\parts\header.php');
// Load our Body
include (__DIR__.'\parts\body.php');
// Load our Footer
include (__DIR__.'\parts\footer.php');
?>
ibeautiful
跃然一笑