CodeIgniter与PHP5.6的兼容问题
更新时间:2015年07月16日 11:48:07 投稿:hebedich
这篇文章主要介绍了CodeIgniter与PHP5.6的兼容问题的处理方法,有需要的小伙伴可以参考下。
错误提示:
A PHP Error was encountered Severity: Notice Message: Only variable references should be returned by reference Filename: core/Common.php Line Number: 257
原代码:
return $_config[0] =& $config;
修改后:
$_config[0] =& $config; return $_config[0];
以上所述就是本文的全部内容了,希望大家能够喜欢。
相关文章
php环境配置之CGI、FastCGI、PHP-CGI、PHP-FPM、Spawn-FCGI比较?
什么是CGI、FastCGI、PHP-CGI、PHP-FPM、Spawn-FCGI?在php运行环境配置中用得到,究竟哪种更适合网站。2011-10-10


最新评论