正如许多用户建议我的那样,我创建了一个文件globals.php
,其中:
<?php
define('ROOT_DIR', __DIR__);
?>
然后我将这个文件包含在网站的每个文件中。
但是现在当我将此文件包含在其他文件中时,问题就来了。
例如网站结构:
/en/index.php
/header.php
/globals.php
现在当我header.php
包括index.php
<?php
//header.php
include 'globals.php';
//index.php
include '../globals.php';
include '../header.php';
?>
现在header.php
找不到globals.php'
,因为它搜索'../globals.php'
.
我怎么解决这个问题?