服务器PHP升级后,Apache 2.0上的PHP版本5.6.2出现以下错误
A PHP Error was encountered Severity: Notice Message: Only variable references should be returned by reference Filename: core/Common.php Line Number: 257
我怎样才能解决这个问题?
编辑文件名:core / Common.php,行号:257
之前
return $_config[0] =& $config;
后
$_config[0] =& $config; return $_config[0];
由NikiC添加
在PHP赋值表达式中,始终返回赋值。因此$ _config [0] =&$ config返回$ config- 但不是变量本身,而是其值的副本。并且返回对临时值的引用不是特别有用(更改它不会做任何事情)。
此修复程序已合并到CI 2.2.1(https://github.com/bcit- ci/CodeIgniter/commit/69b02d0f0bc46e914bed1604cfbd9bf74286b2e3)。最好升级而不是修改核心框架文件。