gpt4 book ai didi

php嵌套包含行为

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:52:55 24 4
gpt4 key购买 nike

在我的代码中的许多地方,我会做如下事情:

file1.php:
<?php
include('../file2.php');

file2.php:
<?php
include('anotherdirectory/file3.php');

根据我尝试使用的服务器或设置,它会设置来自“includer”或“includee”的相对路径。这真是令人困惑。所以 file1 可能会尝试包含“../anotherdirectory/file3.php”或者它可能会尝试包含“anotherdirectory/file3.php”。

什么设置决定了这种行为?我想控制这个...

最佳答案

在我需要使用相对路径的情况下,我使用以下语法:

include (realpath(dirname(__FILE__)."/another_folder/myfile.php"));

关于php嵌套包含行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2860143/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com