在 cakephp 中找不到变量 $config
No variable $config found in cakephp
我遇到了这个错误
No variable $config found in \app\Config\global_constant.php
请帮我解决这个问题。
这是我的 global_constant 文件:
<?php
include_once('../../global_constant.php');
include_once('../../settings.php');
?>
请在你的全局常量文件中定义一个像这样的空白数组
$config = array();
我遇到了这个错误
No variable $config found in \app\Config\global_constant.php
请帮我解决这个问题。
这是我的 global_constant 文件:
<?php
include_once('../../global_constant.php');
include_once('../../settings.php');
?>
请在你的全局常量文件中定义一个像这样的空白数组
$config = array();