我收到此警告消息:
PHP Notice: Only variables should be assigned by reference in /home/sophia/gitter/project/rational-office-2019/tmp/zog.php on line 16
此“ zog.php”文件的内容是什么?
$the_mainrdn = &obtaino($zogcn,'mainrdn');
因此,您将从此警告中认为 obtaino 函数将有第二个参数,该参数应该被引用调用-但这是所讨论功能的开始和结束:< / p>
function obtaino ( $the_xcont, $the_clnom )
{
$awesome_dom = new DOMDocument();
$awesome_dom->loadHTML($the_xcont);
-- <some more stuff here> --
return $awesome_bdv;
}
如您所见,在函数打开时,在 $ the_clnom 之前没有&符号-因此,我看不到如何通过引用调用它。
那我想念什么?