本篇文章由:http://xinpure.com/codeigniter-2-x-to-php5-6-compatible-error/
CI 3.0 已兼容此問題
在代碼遷移的過程中,遇到了一個 PHP 版本兼容錯誤
A PHP Error was encounteredSeverity: NoticeMessage: Only variable references should be returned by referenceFilename: core/Common.phpLine Number: 257
原服務器 PHP 版本為 5.4,新服務器 PHP 版本為 5.6, Codeigniter 版本 2.1.3
解決方法網上比較多,在這記錄下,做個筆記。
主要原因: 此錯誤主要出現在 Codeigniter 2.x 使用 PHP 5.6 以上的版本
解決方法:
-
降級 PHP 版本到 5.5 以下
-
修改 /system/core/Common.php 第257行代碼
將:
return $_config[0] =& $config;
改成:
$_config[0] =& $config; return $_config[0];