2012-05-29 33 views
0

使用Kohana 2版本,一切正常。但今天單擊Koahana網站,並得到這個錯誤:Kohana 2 Formo Warning

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); 

我從來沒有改變任何文件,目錄與爲什麼得到這樣的警告?

回答

1

call_user_func中的&表示通過引用傳遞該變量,但是在調用該函數(即通過引用調用時傳遞)時這樣做在php 5.3中被棄用。

刪除&符應對問題進行排序,但可以通過call_user_func聲明中的ref來傳遞它。

有關更多信息,請參閱http://php.net/manual/en/language.references.pass.php