程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php正則匹配html中帶class的div並選取其中內容的方法,classdiv

php正則匹配html中帶class的div並選取其中內容的方法,classdiv

編輯:關於PHP編程

php正則匹配html中帶class的div並選取其中內容的方法,classdiv


本文實例講述了php正則匹配html中帶class的div並選取其中內容的方法。分享給大家供大家參考。具體分析如下:

先看一段html代碼:

復制代碼 代碼如下:<div class="chartInfo"> 
 <div class="line"></div>
 <div class="tideTable"> 
     <strong>潮汐表</strong>數據僅供參考
     <table width="500" border="0" cellspacing="0" cellpadding="0">
       <tbody><tr> 
  <td width="100"><p><span>潮時 (Hrs)</span></p></td> 
     <td width="100"><p>00:58</p></td>
     <td width="100"><p>05:20</p></td>
     <td width="100"><p>13:28</p></td>
     <td width="100"><p>21:15</p></td>
          </tr> 
       <tr> 
  <td><p><span>潮高 (cm)</span></p></td> 
     <td width="100"><p>161</p></td> 
     <td width="100"><p>75</p></td> 
     <td width="100"><p>288</p></td> 
     <td width="100"><p>127</p></td> 
          </tr> 
     </tbody></table> 
    <h2>時區:-1000 (東10區)  潮高基准面:在平均海平面下174CM</h2> 
       </div> 
 <div class="chart"> 
 </div> 
</div>

這是源程序裡邊的一部分,為了容易看懂,刪減了一大部分,只取<div class="tideTable"> div塊中的內容

首頁先用file_get_content或curl獲取內容部分,我用的是curl。
復制代碼 代碼如下:$ch = curl_init(); 
curl_setopt($ch, CURLOPT_URL, $url); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt( $ch, CURLOPT_HEADER, 0 ); 
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 ); 
curl_setopt( $ch, CURLOPT_POSTFIELDS, $data ); 
$return = curl_exec( $ch ); 
curl_close( $ch ); 
 
$regex4="/<div class=\"tideTable\".*?>.*?<\/div>/ism"; 
if(preg_match_all($regex4, $return, $matches)){ 
   print_r($matches); 
}else{ 
   echo '0'; 
}

這樣就可以了,不多解釋,懂PHP的看代碼,打印看一下效果。

希望本文所述對大家的php程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved