我尝试使用类PHP简单HTML DOM解析器提取图像的类名,但我不能得到这个
我在这个类中使用它:
$file=file_get_contents("https://play.google.com/store/apps/details?id=com.cleanmaster.mguard&hl=en");
$html = str_get_html($file);
$html->find('img', 1)->class = 'screenshot';
//$html->find('div[id=hello]', 0)->innertext = 'foo';
echo $html;
但是我不能得到这个,我不知道我是否可以这样做与其他类或函数,这是可能的得到?
假设"screen "是图像的类名:
foreach ($html->find('img.screenshot') as $img) {
// do what you want with $img
}
你应该阅读文档