gpt4 book ai didi

javascript - PHP : Is it possible to include a file from a sibling directory?

转载 作者:行者123 更新时间:2023-12-02 03:57:59 24 4
gpt4 key购买 nike

您好,在我的主目录中,我有 2 个子目录:subDir_AsubDir_B。在subDir_A中有一个名为file_a.php的文件。在subDir_B中我有一个文件file_b.php。在file_b.php中我想包含file_a.php。有可能吗?我正在使用 Xampp。 enter image description here

最佳答案

使用 4 个函数之一可以轻松完成此操作。

includeinclude_oncerequirerequire_once,请参阅此文档 http://php.net/manual/en/function.include.php (我不会对此进行扩展,因为它是非常基本的 PHP 功能)

您应该按照以下方式进行包含。

# you could use any of the other keywords as well.
include __DIR__ . '/../subDir_A/file_A.php';

使用了魔术常量__DIR__,因为它将考虑相对于它所调用的文件的引用。如果您不这样做,而只是执行include '../subDir_A/file_A.php';如果您在其他地方包含 file_B.php,它可能不起作用,因为它将相对于调用它的父文件。

关于javascript - PHP : Is it possible to include a file from a sibling directory?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43164753/

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