首页 > 开发 > PHP > 正文

CodeIgniter与PHP5.6的兼容问题

2024-05-04 23:37:50
字体:
来源:转载
供稿:网友

这篇文章主要介绍了CodeIgniter与PHP5.6的兼容问题的处理方法,有需要的小伙伴可以参考下。

错误提示:

 

 
  1. A PHP Error was encountered 
  2.  
  3. Severity: Notice 
  4.  
  5. Message: Only variable references should be returned by reference 
  6.  
  7. Filename: core/Common.php 
  8.  
  9. Line Number: 257 

原代码:

 

 
  1. return $_config[0] =& $config; 

修改后:

 

 
  1. $_config[0] =& $config; 
  2.  
  3. return $_config[0]; 
 

 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表