我有以下文件结构。我将所有不必要的代码分开,以便于我查询。
在文件1中,我有我的班级。
在文件2中 - controller.php我有以下内容:
<?php
include('../library/class.php');
?>
当我运行它时,我没有任何错误。
在文件3中 - modify-user.php我有以下代码:
<?php
include('../controller.php');
?>
我希望将该课程纳入modify-user.php
到controller.php
,而不是class.php
我收到以下错误:PHP Warning: include(): Failed opening '../library/class.php' for inclusion