首頁 後端開發 php教程 使用php simple html dom parser解析html标签_PHP教程

使用php simple html dom parser解析html标签_PHP教程

Jul 14, 2016 am 10:07 AM
dom html p parser php simple 使用 標籤 解析

 
 
使用php simple html dom parser解析html标签
用了一下
PHP Simple HTML DOM Parser 
解析HTML页面,感觉还不错,它能创建一个DOM tree方便你解析html里面的内容。用来抓东西挺好的。
 
附带一个例子,你也到sourceforge下载压缩包看里面的例子:
Scraping data with PHP Simple HTML DOM Parser 
 
PHP Simple HTML DOM Parser , written in PHP5+, allows you to manipulate HTML in a very easy way. Supporting invalid HTML, this parser is better then other PHP scripts using complicated regexes to extract information from web pages.
Before getting the necessary info, a DOM should be created from either URL or file. The following script extracts links & images from a website:
view plain copy to clipboard print ? 
 
Php代码 // Create DOM from URL or file    
$html = file_get_html('http://www.microsoft.com/');    
   
// Extract links    
foreach($html->find('a') as $element)    
       echo $element->href . '
';     
   
// Extract images    
foreach($html->find('img') as $element)    
       echo $element->src . '
';  
[php] 
// Create DOM from URL or file   
$html = file_get_html('http://www.microsoft.com/');  
// Extract links   
foreach($html->find('a') as $element)  
       echo $element->href . '
';   
// Extract images   
foreach($html->find('img') as $element)  
       echo $element->src . '
';  
 
// Create DOM from URL or file
$html = file_get_html('http://www.microsoft.com/');
// Extract links
foreach($html->find('a') as $element)
       echo $element->href . '
'; 
// Extract images
foreach($html->find('img') as $element)
       echo $element->src . '
';
The parser can also be used to modify HTML elements:
view plain copy to clipboard print ? 
 
Php代码 // Create DOM from string    
$html = str_get_html('
Simple
Parser
');    
   
$html->find('div', 1)->class = 'bar';    
   
$html->find('div[id=simple]', 0)->innertext = 'Foo';    
   
// Output:
Foo
Parser
   
echo $html;  
[php] 
// Create DOM from string   
$html = str_get_html('
Simple
Parser
');  
$html->find('div', 1)->class = 'bar';  
$html->find('div[id=simple]', 0)->innertext = 'Foo';  
// Output:
Foo
Parser
  
echo $html;  
 
// Create DOM from string
$html = str_get_html('
Simple
Parser
');
$html->find('div', 1)->class = 'bar';
$html->find('div[id=simple]', 0)->innertext = 'Foo';
// Output:
Foo
Parser
echo $html;
Do you wish to retrieve content without any tags?
view plain copy to clipboard print ? 
 
Php代码 echo file_get_html('http://www.yahoo.com/')->plaintext;  
[php] 
echo file_get_html('http://www.yahoo.com/')->plaintext;  
 
echo file_get_html('http://www.yahoo.com/')->plaintext;In the package files of this parser ([url]http://simplehtmldom.sourceforge.net/[/url]) you can find some scraping examples from digg, imdb, slashdot. Let’s create one that extracts the first 10 results (titles only) for the keyword “php” from Google:
view plain copy to clipboard print ? 
 
Php代码 $url = 'http://www.google.com/search?hl=en&q=php&btnG=Search';    
   
// Create DOM from URL    
$html = file_get_html($url);    
   
// Match all 'A' tags that have the class attribute equal with 'l'    
foreach($html->find('a[class=l]') as $key => $info)    
{    
echo ($key + 1).'. '.$info->plaintext."
\n";    
}  
[php] 
$url = 'http://www.google.com/search?hl=en&q=php&btnG=Search';  
// Create DOM from URL   
$html = file_get_html($url);  
// Match all 'A' tags that have the class attribute equal with 'l'   
foreach($html->find('a[class=l]') as $key => $info)  
{  
echo ($key + 1).'. '.$info->plaintext."
\n";  
}  
 
$url = 'http://www.google.com/search?hl=en&q=php&btnG=Search';
// Create DOM from URL
$html = file_get_html($url);
// Match all 'A' tags that have the class attribute equal with 'l'
foreach($html->find('a[class=l]') as $key => $info)
{
echo ($key + 1).'. '.$info->plaintext."
\n";
}NOTE Make sure to include the parser before using any functions of it:
view plain copy to clipboard print ? 
Php代码 
include 'simple_html_dom.php';  
[php] 
include 'simple_html_dom.php';  
 
include 'simple_html_dom.php';For more information regarding the usage of this function consider checking the ‘PHP Simple HTML Dom Parser’ Manual. To download the package files use the following URL: [url]
分享到: 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/477857.htmlTechArticle使用php simple html dom parser解析html标签 用了一下 PHP Simple HTML DOM Parser 解析HTML页面,感觉还不错,它能创建一个DOM tree方便你解析html里面的内...
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

記事本++7.3.1

記事本++7.3.1

好用且免費的程式碼編輯器

SublimeText3漢化版

SublimeText3漢化版

中文版,非常好用

禪工作室 13.0.1

禪工作室 13.0.1

強大的PHP整合開發環境

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

SublimeText3 Mac版

SublimeText3 Mac版

神級程式碼編輯軟體(SublimeText3)

PHP和Python:比較兩種流行的編程語言 PHP和Python:比較兩種流行的編程語言 Apr 14, 2025 am 12:13 AM

PHP和Python各有優勢,選擇依據項目需求。 1.PHP適合web開發,尤其快速開發和維護網站。 2.Python適用於數據科學、機器學習和人工智能,語法簡潔,適合初學者。

HTML,CSS和JavaScript的角色:核心職責 HTML,CSS和JavaScript的角色:核心職責 Apr 08, 2025 pm 07:05 PM

HTML定義網頁結構,CSS負責樣式和佈局,JavaScript賦予動態交互。三者在網頁開發中各司其職,共同構建豐富多彩的網站。

React在HTML中的作用:增強用戶體驗 React在HTML中的作用:增強用戶體驗 Apr 09, 2025 am 12:11 AM

React通過JSX與HTML結合,提升用戶體驗。 1)JSX嵌入HTML,使開發更直觀。 2)虛擬DOM機制優化性能,減少DOM操作。 3)組件化管理UI,提高可維護性。 4)狀態管理和事件處理增強交互性。

了解HTML,CSS和JavaScript:初學者指南 了解HTML,CSS和JavaScript:初學者指南 Apr 12, 2025 am 12:02 AM

WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

PHP:網絡開發的關鍵語言 PHP:網絡開發的關鍵語言 Apr 13, 2025 am 12:08 AM

PHP是一種廣泛應用於服務器端的腳本語言,特別適合web開發。 1.PHP可以嵌入HTML,處理HTTP請求和響應,支持多種數據庫。 2.PHP用於生成動態網頁內容,處理表單數據,訪問數據庫等,具有強大的社區支持和開源資源。 3.PHP是解釋型語言,執行過程包括詞法分析、語法分析、編譯和執行。 4.PHP可以與MySQL結合用於用戶註冊系統等高級應用。 5.調試PHP時,可使用error_reporting()和var_dump()等函數。 6.優化PHP代碼可通過緩存機制、優化數據庫查詢和使用內置函數。 7

說明匹配表達式(PHP 8)及其與開關的不同。 說明匹配表達式(PHP 8)及其與開關的不同。 Apr 06, 2025 am 12:03 AM

在PHP8 中,match表達式是一種新的控制結構,用於根據表達式的值返回不同的結果。 1)它類似於switch語句,但返回值而非執行語句塊。 2)match表達式使用嚴格比較(===),提升了安全性。 3)它避免了switch語句中可能的break遺漏問題,增強了代碼的簡潔性和可讀性。

什麼是跨站點偽造(CSRF),您如何在PHP中實施CSRF保護? 什麼是跨站點偽造(CSRF),您如何在PHP中實施CSRF保護? Apr 07, 2025 am 12:02 AM

在PHP中可以通過使用不可預測的令牌來有效防範CSRF攻擊。具體方法包括:1.生成並在表單中嵌入CSRF令牌;2.在處理請求時驗證令牌的有效性。

PHP行動:現實世界中的示例和應用程序 PHP行動:現實世界中的示例和應用程序 Apr 14, 2025 am 12:19 AM

PHP在電子商務、內容管理系統和API開發中廣泛應用。 1)電子商務:用於購物車功能和支付處理。 2)內容管理系統:用於動態內容生成和用戶管理。 3)API開發:用於RESTfulAPI開發和API安全性。通過性能優化和最佳實踐,PHP應用的效率和可維護性得以提升。

See all articles