使用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);
我从未更改任何文件,目录与为什么会收到此警告?
答案 0 :(得分:1)
&在call_user_func中说通过引用传递变量,但是在调用函数时执行此操作(即,通过引用调用call-time)在php 5.3中已弃用。
删除&符应排序问题,但是可以通过ref在call_user_func声明中传递它。
有关详细信息,请参阅http://php.net/manual/en/language.references.pass.php。