可能重複,以提取特定數據:
How to parse and process HTML with PHP?如何使用的preg_match()使用PHP
問題:
僅提取第一< UL類=」使用preg_match從網頁列出「> </ul>並將其轉儲到數組中。
代碼:
$str = file_get_contents('http://www.domain.com');
preg_match('#<ul class="list">(.*)</ul>#i', $str, $matches);
預期目標:
爲了得到第< UL>和轉儲這一切在數組中。 < ul>應該是家長,裏面的每個元素都應該是孩子。