PHP-包含文件中的包含路径失败
作者:互联网
我在使用PHP包含路径时遇到了一些麻烦,并且不明白,那里出了什么问题.
首先,我想向您展示我的文件/目录结构:
文件/目录结构
|index.php
|foo/
|baz.php
|bar.inc.php
|asdf/
|qwerty.inc.php
/index.php:
include('foo/baz.php');
/foo/baz.php:
include('bar.inc.php');
include('../asdf/qwerty.inc.php')
.inc.php文件的内容在这里无关紧要.
问题出在这里:
如果我直接调用/foo/baz.php,那么这两个都可以正常工作.但是,如果我调用/index.php,则第一个include起作用,第二个失败.这是为什么?
显然,第一个路径是在包含时转换的,而第二个路径则不是.我发现,这与之前的../有关,但我不知道如何解决.这可能是PHP的安全/配置问题吗?
顺便说一句,错误输出是:
Warning: include(../asdf/qwery.inc.php): failed to open stream:
No such file or directory in /foo/baz.php
解决方法:
包含从正在运行的脚本的位置进行评估.当包含另一个文件时,实际上是在将该文件的内容拉入该位置的正在运行的脚本中.
对于应评估包含相对于所包含文件位置的文件,您可以执行以下操作:
/foo/baz.php
include(dirname(__FILE__) . '/bar.inc.php';
include(dirname(__FILE__) . '/../asdf/qwerty.inc.php'
从文档中:
__FILE__是文件的完整路径和文件名.如果在include中使用,则返回包含文件的名称.从PHP 4.0.2开始,__ FILE__始终包含已解析符号链接的绝对路径,而在旧版本中,在某些情况下,它包含相对路径.
dirname给定一个包含文件或目录路径的字符串,此函数将返回父目录的路径.
[http://php.net/manual/en/function.dirname.php]
[http://php.net/manual/zh/language.constants.predefined.php]
标签:include,include-path,php 来源: https://codeday.me/bug/20191030/1967340.html