if (!is_null($elements)) {
$embeds = array();
foreach ($elements as $element) {
if (trim(strip_tags($element->innertext)) == $episode_term) {
$html2 = file_get_html($element->href);
$elements2 = $html2->find('#streamlinks .sideleft a');
if (!is_null($elements2)) {
foreach ($elements2 as $element) {
$html3 = file_get_html($element->href);
$iframe_element = $html3->find('.frame', 0);
if (!is_null($iframe_element)) {
$embed = $misc->buildEmbed($iframe_element->src);
if ($embed) {
$embeds[] = array(
"embed" => $embed,
"link" => $iframe_element->src,
"language" => "ENG",
);
}
}
}
}
}
}
return $embeds;
}
中的非对象上调用成员函数find()
Blockquote
PHP致命错误:在$elements2 = $html2->find('#streamlinks .sideleft a');
因此导致此错误出现在我的错误日志文件中的原因令人困惑吗?
答案 0 :(得分:0)
我尝试输出$element->href
,因为你执行了file_get_html。
如果file_get_html无法使页面$html2
保持单一化,并且您无法在其上使用查找。
除此之外,你可以建立一个检查,在file_get_html之后设置$html2
,如果没有则输出错误。我通常使用这样的东西:
if($html2 == false || $html2 == NULL){
// no html found
}else{
// html found
}