我正在尝试检查标签后是否有图像,以及是否有抓取宽度值。我在下面使用的方法不起作用
$element = $html->find("td", 23);
if ($element->innertext != null) {
$element = $html->find("td img[src=http://pictures.domain.com/images/7.gif]");
echo $element->width . '<br />';
} else {
echo "empty";
}