你好我正在使用一箇舊的腳本,並且當我試圖訪問運行該腳本的站點時遇到這個錯誤。PHP致命錯誤:呼叫時傳遞引用已被刪除
Fatal error: Call-time pass-by-reference has been removed in /home/image/public_html/*****/admin/inc/html.inc.php on line 86
下面是從線83 PHP代碼下降到89我運行PHP版本5.5.20
if ($flag) {
$out = '';
$find = '{CONSTVAR:$';
html_replacevar(&$html, $find, $page);
if (strpos($html, '{') === FALSE) {
$out = $html;
}
能否任何人都知道PHP告訴什麼可能是有問題的IM,以及如何要解決這個問題?我是新來的PHP和編碼,所以這就是爲什麼我需要幫助。非常感謝你。
更改html_replacevar(&$ html,$ find,$ page);到html_replacevar($ html,$ find,$ page); –
@PrafullaKumarSahu看到[這個答案](http://stackoverflow.com/a/38551028/315024)的評論 – Walf
去接受一個答案? – Walf