如何 PHP- 从域的根目录包含?
How to PHP-Include from Root of Domain?
我有一个 file.php
位于 www.example.com/folder/
。
我希望该文件对位于 www.example.com/include/
.
中的文件使用 include 命令
如果我简单地使用:
<?php include './include/footer.php';?>
它不起作用,因为它会尝试在 file.php
所在的物理文件夹中搜索,而我需要它来引用我的域的根目录。
使用$_SERVER['DOCUMENT_ROOT']
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";
我有一个 file.php
位于 www.example.com/folder/
。
我希望该文件对位于 www.example.com/include/
.
如果我简单地使用:
<?php include './include/footer.php';?>
它不起作用,因为它会尝试在 file.php
所在的物理文件夹中搜索,而我需要它来引用我的域的根目录。
使用$_SERVER['DOCUMENT_ROOT']
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";