您好,登錄后才能下訂單哦!
極其簡(jiǎn)便的PHP HTML DOM解析器PHP Simple HTML DOM Parser,有中文手冊(cè),對(duì)于需要分析HTML代碼dom結(jié)構(gòu)的php開(kāi)發(fā)者來(lái)說(shuō),是一個(gè)極其有用的函數(shù)庫(kù),使用Jquery風(fēng)格的dom節(jié)點(diǎn)查找語(yǔ)法,強(qiáng)烈推薦。
//從一個(gè)URL或者文件創(chuàng)建一個(gè)DOM對(duì)象
$html = file_get_html(‘http://www.google.cn/’);
// 尋找所有的img標(biāo)簽
foreach($html->find(‘img’) as $element)
echo $element->src . ‘<br>’;
// 尋找所有的鏈接標(biāo)簽
foreach($html->find(‘a(chǎn)’) as $element)
echo $element->href . ‘<br>’;
// 從HTML中提取內(nèi)容(不包含標(biāo)簽)
echo file_get_html(‘http://www.google.com/’)->plaintext;
//從字符串創(chuàng)建一個(gè)DOM對(duì)象
$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創(chuàng)建一個(gè)DOM對(duì)象
$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/
中文手冊(cè) http://phpdom.comsing.com/
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。