CodeIgniter 2.X 於 PHP5.6 兼容錯誤

本篇文章由:http://xinpure.com/codeigniter-2-x-to-php5-6-compatible-error/php

CI 3.0 已兼容此問題服務器

在代碼遷移的過程當中,遇到了一個 PHP 版本兼容錯誤codeigniter

A PHP Error was encountered

Severity: Notice

Message: Only variable references should be returned by reference

Filename: core/Common.php

Line Number: 257

原服務器 PHP 版本爲 5.4,新服務器 PHP 版本爲 5.6, Codeigniter 版本 2.1.3code

解決方法網上比較多,在這記錄下,作個筆記。get

主要緣由: 此錯誤主要出如今 Codeigniter 2.x 使用 PHP 5.6 以上的版本it

解決方法: class

  1. 降級 PHP 版本到 5.5 如下方法

  2. 修改 /system/core/Common.php 第257行代碼error

將:兼容

return $_config[0] =& $config;

改爲:

$_config[0] =& $config; return $_config[0];
相關文章
相關標籤/搜索