我有以下文件和目录结构:
index.php
images/
includes/
config.php
classes/
user.php
每次尝试包含文件时都会遇到问题。比如说,我有以下代码config.php
include_once( "../class/user.php" );
这个工作正常,只要调用文件真的是../ from class / user.php但是现在如果我在index.php中有一个include
include_once("includes/config.php");
我总是会收到一个错误,因为它试图找到../class/user.php并且不会起作用。无论我在哪个目录,我怎样才能获得工作?