您好,登錄后才能下訂單哦!
極其簡便的PHP HTML DOM解析器PHP Simple HTML DOM Parser,有中文手冊,對于需要分析HTML代碼dom結構的php開發者來說,是一個極其有用的函數庫,使用Jquery風格的dom節點查找語法,強烈推薦。
//從一個URL或者文件創建一個DOM對象
$html = file_get_html(‘http://www.google.cn/’);
// 尋找所有的img標簽
foreach($html->find(‘img’) as $element)
echo $element->src . ‘<br>’;
// 尋找所有的鏈接標簽
foreach($html->find(‘a’) as $element)
echo $element->href . ‘<br>’;
// 從HTML中提取內容(不包含標簽)
echo file_get_html(‘http://www.google.com/’)->plaintext;
//從字符串創建一個DOM對象
$html = str_get_html(‘<div id=”hello”>Hello</div><div id=”world”>World</div>’);
$html->find(‘div’, 1)->class = ‘bar’;
$html->find(‘div[id=hello]’, 0)->innertext = ‘foo’;
echo $html; // 輸出: <div id=”hello”>foo</div><div id=”world” class=”bar”>World</div>
//從URL創建一個DOM對象
$html = file_get_html(‘http://slashdot.org/’);
// 尋找所有的article塊
foreach($html->find(‘div.article’) as $article) {
$item[‘title’] = $article->find(‘div.title’, 0)->plaintext;
$item[‘intro’] = $article->find(‘div.intro’, 0)->plaintext;
$item[‘details’] = $article->find(‘div.details’, 0)->plaintext;
$articles[] = $item;
}
print_r($articles);
下載 http://sourceforge.net/projects/simplehtmldom/
中文手冊 http://phpdom.comsing.com/
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。