在服务器PHP升级之后,在Apache2.0上使用PHPVersion5.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
我怎么才能解决这个问题?
发布于 2018-03-23 05:35:58
编辑文件:core/Common.php,行号:257
以前
return $_config[0] =& $config;
后
$_config[0] =& $config; return $_config[0];
发布于 2018-03-23 06:02:18
这已在codeigniter 2.2.1中进行了修复......
相似问题
领取专属 10元无门槛券
AI混元助手 在线答疑
洞察 腾讯核心技术
剖析业界实践案例