我想在网页上搜索<div class="contents">
,然后我想在foreach
块中对数据进行排序并将其保存到文件中,我很确定如何做后者但是我需要帮助进行网页的初始搜索。
感谢。
P.S。网页上有多个<div class="contents">
元素,我将通过foreach
块来浏览它们。
答案 0 :(得分:-1)
使用PHP轻松使用simple_html_dom。例如:
$html = file_get_html('http://www.google.com/');
// Find all images
foreach($html->find('img') as $element)
echo $element->src . '<br>';