来源: (1条消息) Only variable references should be returned by reference_diligentyang的博客-CSDN博客
在新版本的PHP中,打开的旧版的CI框架,报错如下
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257
打开System\core\Common.php
修改如下内容
return $_config[0] =& $config;
为
$_config[0] =& $config;
return $_config[0];
即可
————————————————
版权声明:本文为CSDN博主「diligentyang」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_28602957/article/details/51956757