CodeIgniter与PHP5.6的兼容问题

前端之家收集整理的这篇文章主要介绍了CodeIgniter与PHP5.6的兼容问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

错误提示

PHP Error was encountered

Severity: Notice

Message: Only variable references should be returned by reference

Filename: core/Common.PHP

Line Number: 257

代码

PHP;"> return $_config[0] =& $config;

修改后:

PHP;"> $_config[0] =& $config;

return $_config[0];

以上所述就是本文的全部内容了,希望大家能够喜欢。

原文链接:https://www.f2er.com/php/21492.html

猜你在找的PHP相关文章