首页 > 代码库 > PHP之CI框架架设错误--Only variable references should be returned by reference
PHP之CI框架架设错误--Only variable references should be returned by reference
解决参考
http://www.rafalinux.com/
La búsqueda fue bastante infructuosa, y hasta hace un par de días, nadie respondió a un llamamiento en los foros de Ellislab (el equipo creador de CodeIgniter). Varias soluciones se habían propuesto, pero ninguna era efectiva. Este pequeño arreglo es lo que he utilizado, de modo que ahora puedo continuar usando mi instalación de Lighhtpd, PHP y MySQL, proporcionadas por Debian.
El error se refiere a la línea 257 del archivo /system/core/Common.php, que dice esto:
return $_config[0] =& $config; |
Lo que hay que hacer es sustitutirla por:
$_config[0] =& $config;return $_config[0]; |
Después de esto, la aplicación funciona correctamente.
猜出来的意思就是:
将257行的
return $_config[0] =& $config;
更改为:
$_config[0] =& $config;return $_config[0];
PHP之CI框架架设错误--Only variable references should be returned by reference
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。