PHP解析某些元素HTML文件

时间:2018-02-21 19:22:01

标签: php html parsing file-get-contents

如何通过PHP解析HTML文件中的某些元素 那是我的HTML文件:

https://pastebin.com/raw/vVYqrCUd

我希望得到HTML文件中的每个项目。 这是我目前的PHP代码:

$json_object= file_get_contents($url);
$json_decoded = json_decode($json_object);

preg_match_all('/<span class="(normal_price|market_listing_num_listings_qty|market_listing_item_name)">(.*)<\/span>/',$json_decoded->results_html, $sor);

foreach($sor[1] as $k => $v)
{
echo "Name" .$v[0]."<br/>";
echo "price" .$v[1]."<br/>";
echo "des" .$v[2]."<br/>";
}

非常感谢, 最诚挚的问候 马罗

0 个答案:

没有答案