我已经搜索了方法来做到这一点,但它们似乎都不适用于所有路径,所以我想知道你是否可以给我一个关于如何做到这一点的方向:
这是结构:
Home Directoy
config.php
index.php
includes/
user_login.php
applicant_track.php
ucp/
index.php
当我试图在 ucp/index.php 中包含 include/user_login.php 时,它不允许我说它找不到该文件,我的代码在 ucp/index.php 中是:
if(!defined('root_path'))
{
define('root_path', realpath(dirname(__FILE__)));
}
include(root_path . '\config.php');
switch($_GET["a"])
{
case null: include(root_path . '\index.php'); break;
case "login": include(root_path . '\includes\user_login.php'); break;
}
这就是我得到的:
Warning: include(E:\xampp\htdocs\aod_panel\ucp\config.php): failed to open stream:
我很乐意提供有关如何解决此问题的建议。