换了最新版本xamp运行出了个问题
刚才安装xamp 5.6,支持php5.6的,但是打开codeIgniter主页出了下面这个错误难道不兼容?
A PHP Error was encountered
Severity: Notice
Message: Only variable references should be returned by reference
Filename: core/Common.php
Line Number: 257 用的CodeIgniter是2.2版的 刚才试验了,和codeigniter版本没关系,难道是用了php5.6的缘故? 跟PHP版本有关系 将257行的
return $_config =& $config;
更改为:
$_config =& $config;
return $_config;
详情请看这边博客
http://www.cnblogs.com/aguncn/p/4085813.html
页:
[1]