您好,登錄后才能下訂單哦!
這篇文章主要介紹“php怎么用正則匹配html中帶class的div并選取其中內(nèi)容”,在日常操作中,相信很多人在php怎么用正則匹配html中帶class的div并選取其中內(nèi)容問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”php怎么用正則匹配html中帶class的div并選取其中內(nèi)容”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
本文實例講述了php正則匹配html中帶class的div并選取其中內(nèi)容的方法。分享給大家供大家參考。具體分析如下:
先看一段html代碼:
復(fù)制代碼 代碼如下:
<div class="chartInfo">
<div class="line"></div>
<div class="tideTable">
<strong>潮汐表</strong>數(shù)據(jù)僅供參考
<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>
<h3>時區(qū):-1000 (東10區(qū)) 潮高基準面:在平均海平面下174CM</h3>
</div>
<div class="chart">
</div>
</div>
這是源程序里邊的一部分,為了容易看懂,刪減了一大部分,只取<div class="tideTable"> div塊中的內(nèi)容
首頁先用file_get_content或curl獲取內(nèi)容部分,我用的是curl。
復(fù)制代碼 代碼如下:
$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的看代碼,打印看一下效果。
到此,關(guān)于“php怎么用正則匹配html中帶class的div并選取其中內(nèi)容”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。