gpt4 book ai didi

php - 如何从域的根目录中包含 PHP?

转载 作者:行者123 更新时间:2023-12-05 01:02:10 27 4
gpt4 key购买 nike

我有一个 file.php位于www.example.com/folder/ .

我希望该文件对位于 www.example.com/include/ 中的文件使用包含命令.

如果我简单地使用:

<?php include './include/footer.php';?>

它不起作用,因为它会尝试在物理文件夹中搜索 file.php位于,而我需要它来引用我的域的根目录。

最佳答案

使用 $_SERVER['DOCUMENT_ROOT']

这里是 server documentation .

The document root directory under which the current script is executing, as defined in the server's configuration file.

合起来应该是这样的:

include $_SERVER['DOCUMENT_ROOT'] . "/include/footer.php";

关于php - 如何从域的根目录中包含 PHP?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35659493/

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