$dom=new DOMDocument();
@$dom->loadHTML($cl);
$xpath=new DOMXpath($dom);
$dish_l=$xpath->query("/html/body/div/table[5]/tr/td/div/div");
echo $dish_l->length;
for($index=0;$index<$dish_l->length;$index++)
{
if( ($dish_id->item(0)->nodeValue) ) //I no need empty <div> blocks and this idea works perfect
{
}
}
但我得到"Notice: Trying to get property of non-object"
如果只是这个PHP脚本我只是禁用show php错误,一切都很好。
我尝试将它用于Kohana和&#34;注意&#34;再次出现,脚本停止与ErrorException。
我尝试了一些提示
for($index=0;$index<$dish_l->length;$index++)
{
if(!is_object ($dish_id ) )//but it is not works
{
}
else
{
if( ($dish_id->item(0)->nodeValue) )
{
}
}
}
如何忽略Kohana中的通知或检查是否反对?