嗨,我正在使用cakephp 2。我在app / webroot中包含外部php文件夹 并在我的控制器中用于包含以下文件。
include_once(ROOT . DS . 'app' . DS . 'webroot'.DS . 'socio'.DS . 'index.php');
该文件已包含在内,但出现错误无法重新声明App类。 我知道我已经两次宣布App类。由于它是具有许多依赖性的外部文件夹,因此我无法更改类名。请帮助我找到解决方法
答案 0 :(得分:-1)
您可以使用类似的方法吗,WWW_ROOT是一个核心定义常量,它提供了到webroot的完整路径。
include_once(WWW_ROOT . 'socio'.DS . 'index.php');
https://book.cakephp.org/2.0/en/core-libraries/global-constants-and-functions.html