使用Kohana 2版本,一切正常。但今天点击Koahana网站,就会得到这个错误:
An error was detected which prevented the loading of this page. If this problem persists, please contact the website administrator.
panel/modules/formo/libraries/Formo.php [103]:
Call-time pass-by-reference has been deprecated这是103.行:
call_user_func('Formo_'.$name.'::load', & $this);我从来没有更改过任何文件,目录vs.为什么会收到这个警告?
发布于 2012-05-29 18:43:42
call_user_func中的&表示通过引用传递变量,但是在调用函数(即.调用时通过引用传递)在php 5.3中已被弃用。
删除与号应该可以解决这个问题,但是可以在call_user_func声明中通过引用传递它。
有关详细信息,请参阅http://php.net/manual/en/language.references.pass.php。
https://stackoverflow.com/questions/10797125
复制相似问题