此行有错误
return $_config[0] =& $config;
当我将其更改为
$_config[0] =& $config;
return $_config[0];
然后它给了我http错误500
遇到 PHP 错误 严重性:通知消息:仅应通过引用返回变量引用 文件名:core/Common.php 行号:257
它给出了这样的错误,而且我的服务器 php 版本更新为 7.1
此行有错误
return $_config[0] =& $config;
当我将其更改为
$_config[0] =& $config;
return $_config[0];
然后它给了我http错误500
遇到 PHP 错误 严重性:通知消息:仅应通过引用返回变量引用 文件名:core/Common.php 行号:257
它给出了这样的错误,而且我的服务器 php 版本更新为 7.1