我的文件结构如下:
/ (Root)
|-- includes
|-- |-- global.php
|-- |-- config.php
|-- index.php
在我index.php
文件中我写道:
<?php
include "includes/global.php";
?>
在includes/global.php
我写道:
<?php
include "config.php";
?>
在global.php
在index.php
将包括whitout任何问题,但config.php
中global.php
将不包括!
我用的是XAMPP和我的老版本的XAMPP(1.7.3版本),我没有任何问题,但今天我安装XAMPP(版本1.8.1)的新版本,我有这个问题!
我应该使用绝对路径,包括config.php
文件global.php
但我不希望使用绝对路径,我想之前,包括像,我该怎么办呢?