我使用以下方案来包含 PHP 文件:
require($_SERVER['DOCUMENT_ROOT'] . "Path/To/My/Website/Path/To/My/File.php");
我想保存
$_SERVER['DOCUMENT_ROOT'] . 'Path/To/My/Website'
在某个变量中,比如说$my_website
,然后写:
require("$my_website/Path/To/My/File.php");
这样,如果我决定更改我网站的路径,我只需要在我的代码中的一个地方进行修改。
一些 PHP 文件可能会被多次包含在不同的目录级别。例如:
$_SERVER['DOCUMENT_ROOT']
Path
To
My
Website
Dir1
a.php
Dir2
b.php that includes a.php
Dir3
Dir4
c.php that includes a.php
但是,我想不出该怎么做。
请建议。