phpstudy php-5.6.27
框架CI
Only variable references should be returned by reference
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];
本文出自 “水滴石穿” 博客,请务必保留此出处http://liangge.blog.51cto.com/7154562/1897639
原文:http://liangge.blog.51cto.com/7154562/1897639