微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

嵌套包含PHP

我遇到嵌套包含问题.虽然我看到有一些类似的问题,但它们似乎没有帮助.

一般来说,我没有包含问题,但最近我一直在尝试新的东西,我无法让嵌套的包含工作.

一个解决方案:php nested include behavior

基本设置:

> index.PHP包含’/include/header.PHP
> header.PHP包含’/resources/login/index_alt.PHP
> index_alt.PHP包含’/resources/login/index_auth.PHP
> index_auth.PHP包含’/class/Login.class.PHP’和
‘/class/Connection.class/PHP

我实际上并没有写这样的路径(它是为了理解深度).
这就是它在页面上的外观.

index.PHP文件

> include(‘include / header.PHP’);

header.PHP :(除了/ resources / …之外,每个深度级别都包含头文件)

> include(‘../ resources / login / index_alt.PHP’);

index_alt.PHP

> include(‘index_auth.PHP’);

index_auth.PHP

> include(‘../../ class / Login.class.PHP’);
> include(‘../../ class / Connection.class.PHP’);

在某些深度级别,头文件被接受,但包括嵌套将不…

解决方法:

假设文件系统看起来像这样..

/www
   include/header.PHP
   class/Login.class.PHP
   class/Connection.class.PHP
   resources/login/index_alt.PHP
   resources/login/index_auth.PHP
   index.PHP

这意味着

index.PHP: include(__DIR__ . '/include/header.PHP');
header.PHP: include(__DIR__ . '/../resources/login/index_alt.PHP');
index_alt.PHP:  include(__DIR__ . '/index_auth.PHP');

等等;见http://php.net/manual/en/language.constants.predefined.php

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐