乾貨來了,PHP擷取網頁原始碼內所有<a>標籤,並形成陣列
阿新 • • 發佈:2018-11-05
前言
如果我們需要獲取一個網頁的原始碼,並從中獲取一些自己需要的資訊,比如<a>標籤,或者<p><ul>標籤當中的所有內容和的時候。
我們就必須要擷取,然而php擷取函式,相當的操蛋,原諒博主是個新手,至少我找了很久,並沒有發現有向左擷取字串的函式
像別人的答案substr()配合獲取字串位置的函式,然後擷取。
我只能說試過,並不好用。
然後還有些七七八八的辦法,統統不實用,麻煩。
接下來我就要說一種方法了,相當的BUG,相當的好用。
翠花,上程式碼!!!
---------------------------------------------說正事分割線-----------------------------------------------
1,先把函式奉上吧!這裡是通過將字串打散成陣列,然後擷取的
function intercept_str($str,$start,$end,$option = 1){ $strarr=explode($start,$str); $tem=$strarr[1]; if(empty($end)){ return $tem; }else{ $strarr=explode($end,$tem); if($option==1){ return $strarr[0]; } if($option==2){ return $start.$strarr[0]; } if($option==3){ return $strarr[0].$end; }else{ return $start.$strarr[0].$end; } } }
2,這裡是函式使用具體的例子
$url = "http://www.texnet.com.cn/product"; $result = file_get_contents($url); $str = intercept_str($result, '粘上你要開始擷取的字串比如:<div class="productsearch">', '粘上結束時刻的字串比如:<div class="greenblock1">', 1); //需要先去除所有的換行符、製表符、回車等等,html原始檔由於上述符號的存在會造成無法匹配。 $hre = preg_replace("/[\t\n\r]+/","",$str); $reg='/<a .*?>.*?<\/a>/';//這個正則可以自己發揮,博主只是隨便放了個匹配<a>標籤的 preg_match_all($reg,$hre,$aarray);
//然後就可以列印了呀
dump($aarray);
直接看結果:
array(1) {
[0] => array(96) {
[0] => string(195) "<a href="http://jinxiang.cn.texnet.com.cn" title="桐鄉市錦翔紡織有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>錦翔紡織有限公司 </a>"
[1] => string(115) "<a href="http://jinxiang.cn.texnet.com.cn/pdetail--840799.html" title="絹絲 " target="_blank" > 絹絲 </a>"
[2] => string(113) "<a href="http://jinxiang.cn.texnet.com.cn/pdetail--840798.html" title="絹絲" target="_blank" > 絹絲 </a>"
[3] => string(131) "<a href="http://jinxiang.cn.texnet.com.cn/pdetail--840802.html" title="羊毛混紡紗" target="_blank" > 羊毛混紡紗 </a>"
[4] => string(131) "<a href="http://jinxiang.cn.texnet.com.cn/pdetail--840800.html" title="絹絲混紡紗" target="_blank" > 絹絲混紡紗 </a>"
[5] => string(119) "<a href="http://jinxiang.cn.texnet.com.cn/pdetail--840801.html" title="毛腈紗" target="_blank" > 毛腈紗 </a>"
[6] => string(122) "<a href="http://jinxiang.cn.texnet.com.cn" target="_blank" class="green L130 english">http://jinxiang.cn.texnet.com.cn</a>"
[7] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=2056"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[8] => string(205) "<a href="http://zjhtfs.cn.texnet.com.cn" title="桐鄉市海通毛絨服飾有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>海通毛絨服飾有限公司 </a>"
[9] => string(111) "<a href="http://zjhtfs.cn.texnet.com.cn/pdetail--939047.html" title="粗紗" target="_blank" > 粗紗 </a>"
[10] => string(117) "<a href="http://zjhtfs.cn.texnet.com.cn/pdetail--939048.html" title="粗紡紗" target="_blank" > 粗紡紗 </a>"
[11] => string(135) "<a href="http://zjhtfs.cn.texnet.com.cn/pdetail--939033.html" title="粗紡羊仔紗線" target="_blank" > 粗紡羊仔紗線 </a>"
[12] => string(117) "<a href="http://zjhtfs.cn.texnet.com.cn/pdetail--939043.html" title="絲羊絨" target="_blank" > 絲羊絨 </a>"
[13] => string(117) "<a href="http://zjhtfs.cn.texnet.com.cn/pdetail--939046.html" title="羊絨紗" target="_blank" > 羊絨紗 </a>"
[14] => string(118) "<a href="http://zjhtfs.cn.texnet.com.cn" target="_blank" class="green L130 english">http://zjhtfs.cn.texnet.com.cn</a>"
[15] => string(129) "<a target="_blank" href="/enquiry/?t=company&id=768"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[16] => string(193) "<a href="http://xtknit.cn.texnet.com.cn" title="桐鄉市新拓針織有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>新拓針織有限公司 </a>"
[17] => string(117) "<a href="http://xtknit.cn.texnet.com.cn/pdetail--750913.html" title="衛衣布" target="_blank" > 衛衣布 </a>"
[18] => string(117) "<a href="http://xtknit.cn.texnet.com.cn/pdetail--750931.html" title="爛花布" target="_blank" > 爛花布 </a>"
[19] => string(117) "<a href="http://xtknit.cn.texnet.com.cn/pdetail--750927.html" title="燙金布" target="_blank" > 燙金布 </a>"
[20] => string(123) "<a href="http://xtknit.cn.texnet.com.cn/pdetail--750907.html" title="彩條汗布" target="_blank" > 彩條汗布 </a>"
[21] => string(111) "<a href="http://xtknit.cn.texnet.com.cn/pdetail--750908.html" title="汗布" target="_blank" > 汗布 </a>"
[22] => string(118) "<a href="http://xtknit.cn.texnet.com.cn" target="_blank" class="green L130 english">http://xtknit.cn.texnet.com.cn</a>"
[23] => string(129) "<a target="_blank" href="/enquiry/?t=company&id=828"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[24] => string(193) "<a href="http://zjyuxi.cn.texnet.com.cn" title="桐鄉市玉溪針織有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>玉溪針織有限公司 </a>"
[25] => string(117) "<a href="http://zjyuxi.cn.texnet.com.cn/pdetail--691497.html" title="印花布" target="_blank" > 印花布 </a>"
[26] => string(135) "<a href="http://zjyuxi.cn.texnet.com.cn/pdetail--691378.html" title="人棉氨綸汗布" target="_blank" > 人棉氨綸汗布 </a>"
[27] => string(111) "<a href="http://zjyuxi.cn.texnet.com.cn/pdetail--691383.html" title="汗布" target="_blank" > 汗布 </a>"
[28] => string(141) "<a href="http://zjyuxi.cn.texnet.com.cn/pdetail--691281.html" title="人棉氨綸印花布" target="_blank" > 人棉氨綸印花布 </a>"
[29] => string(116) "<a href="http://zjyuxi.cn.texnet.com.cn/pdetail--10418.html" title="羅馬布" target="_blank" > 羅馬布 </a>"
[30] => string(118) "<a href="http://zjyuxi.cn.texnet.com.cn" target="_blank" class="green L130 english">http://zjyuxi.cn.texnet.com.cn</a>"
[31] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=1589"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[32] => string(192) "<a href="http://zhonglisilk.cn.texnet.com.cn" title="桐鄉市洲泉眾力絲織廠" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>洲泉眾力絲織廠 </a>"
[33] => string(129) "<a href="http://zhonglisilk.cn.texnet.com.cn/pdetail--1013163.html" title="亞麻彩條" target="_blank" > 亞麻彩條 </a>"
[34] => string(129) "<a href="http://zhonglisilk.cn.texnet.com.cn/pdetail--1013180.html" title="亞麻素色" target="_blank" > 亞麻素色 </a>"
[35] => string(147) "<a href="http://zhonglisilk.cn.texnet.com.cn/pdetail--1013190.html" title="亞麻燙金針織布" target="_blank" > 亞麻燙金針織布 </a>"
[36] => string(129) "<a href="http://zhonglisilk.cn.texnet.com.cn/pdetail--1013192.html" title="亞麻印花" target="_blank" > 亞麻印花 </a>"
[37] => string(141) "<a href="http://zhonglisilk.cn.texnet.com.cn/pdetail--1013453.html" title="人棉竹節汗布" target="_blank" > 人棉竹節汗布 </a>"
[38] => string(128) "<a href="http://zhonglisilk.cn.texnet.com.cn" target="_blank" class="green L130 english">http://zhonglisilk.cn.texnet.com.cn</a>"
[39] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=1918"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[40] => string(207) "<a href="http://zjqinghe.cn.texnet.com.cn" title="桐鄉市清瀛家居用品有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>清瀛家居用品有限公司 </a>"
[41] => string(112) "<a href="http://zjqinghe.cn.texnet.com.cn/pdetail--45530.html" title="靠墊" target="_blank" > 靠墊 </a>"
[42] => string(118) "<a href="http://zjqinghe.cn.texnet.com.cn/pdetail--50861.html" title="三件套" target="_blank" > 三件套 </a>"
[43] => string(113) "<a href="http://zjqinghe.cn.texnet.com.cn/pdetail--712086.html" title="被子" target="_blank" > 被子 </a>"
[44] => string(113) "<a href="http://zjqinghe.cn.texnet.com.cn/pdetail--712130.html" title="毯子" target="_blank" > 毯子 </a>"
[45] => string(113) "<a href="http://zjqinghe.cn.texnet.com.cn/pdetail--712159.html" title="墊子" target="_blank" > 墊子 </a>"
[46] => string(122) "<a href="http://zjqinghe.cn.texnet.com.cn" target="_blank" class="green L130 english">http://zjqinghe.cn.texnet.com.cn</a>"
[47] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=1930"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[48] => string(203) "<a href="http://hlzr.cn.texnet.com.cn" title="桐鄉市華靈絲綢有限責任公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>華靈絲綢有限責任公司 </a>"
[49] => string(110) "<a href="http://hlzr.cn.texnet.com.cn/pdetail--1121956.html" title="印花" target="_blank" > 印花 </a>"
[50] => string(122) "<a href="http://hlzr.cn.texnet.com.cn/pdetail--1121947.html" title="長毛植絨" target="_blank" > 長毛植絨 </a>"
[51] => string(122) "<a href="http://hlzr.cn.texnet.com.cn/pdetail--1121940.html" title="鞋材面料" target="_blank" > 鞋材面料 </a>"
[52] => string(122) "<a href="http://hlzr.cn.texnet.com.cn/pdetail--1121933.html" title="服裝面料" target="_blank" > 服裝面料 </a>"
[53] => string(116) "<a href="http://hlzr.cn.texnet.com.cn/pdetail--1121884.html" title="仿羊絨" target="_blank" > 仿羊絨 </a>"
[54] => string(114) "<a href="http://hlzr.cn.texnet.com.cn" target="_blank" class="green L130 english">http://hlzr.cn.texnet.com.cn</a>"
[55] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=2190"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[56] => string(198) "<a href="http://chenhuisilk.cn.texnet.com.cn" title="桐鄉市晨暉絲綢有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>晨暉絲綢有限公司 </a>"
[57] => string(135) "<a href="http://chenhuisilk.cn.texnet.com.cn/pdetail--1521909.html" title="大提花面料" target="_blank" > 大提花面料 </a>"
[58] => string(135) "<a href="http://chenhuisilk.cn.texnet.com.cn/pdetail--1522013.html" title="人絲美麗綢" target="_blank" > 人絲美麗綢 </a>"
[59] => string(135) "<a href="http://chenhuisilk.cn.texnet.com.cn/pdetail--1522029.html" title="滌絲斜紋綢" target="_blank" > 滌絲斜紋綢 </a>"
[60] => string(129) "<a href="http://chenhuisilk.cn.texnet.com.cn/pdetail--1522061.html" title="裝飾里布" target="_blank" > 裝飾里布 </a>"
[61] => string(122) "<a href="http://chenhuisilk.cn.texnet.com.cn/pdetail--612727.html" title="小提花" target="_blank" > 小提花 </a>"
[62] => string(128) "<a href="http://chenhuisilk.cn.texnet.com.cn" target="_blank" class="green L130 english">http://chenhuisilk.cn.texnet.com.cn</a>"
[63] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=2434"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[64] => string(193) "<a href="http://jhknit.cn.texnet.com.cn" title="桐鄉市嘉鴻針織有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>嘉鴻針織有限公司 </a>"
[65] => string(152) "<a href="http://jhknit.cn.texnet.com.cn/pdetail--41316.html" title="彩條絲光棉珠地網眼" target="_blank" > 彩條絲光棉珠地網眼 </a>"
[66] => string(140) "<a href="http://jhknit.cn.texnet.com.cn/pdetail--41315.html" title="燙銀純亞麻汗布" target="_blank" > 燙銀純亞麻汗布 </a>"
[67] => string(146) "<a href="http://jhknit.cn.texnet.com.cn/pdetail--41313.html" title="雙絲光棉彩條羅紋" target="_blank" > 雙絲光棉彩條羅紋 </a>"
[68] => string(134) "<a href="http://jhknit.cn.texnet.com.cn/pdetail--41322.html" title="彩條氨綸汗布" target="_blank" > 彩條氨綸汗布 </a>"
[69] => string(116) "<a href="http://jhknit.cn.texnet.com.cn/pdetail--41310.html" title="羅馬布" target="_blank" > 羅馬布 </a>"
[70] => string(118) "<a href="http://jhknit.cn.texnet.com.cn" target="_blank" class="green L130 english">http://jhknit.cn.texnet.com.cn</a>"
[71] => string(130) "<a target="_blank" href="/enquiry/?t=company&id=8694"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[72] => string(198) "<a href="http://kangtaisilk.cn.texnet.com.cn" title="桐鄉市康泰織造有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>康泰織造有限公司 </a>"
[73] => string(122) "<a href="http://kangtaisilk.cn.texnet.com.cn/pdetail--716322.html" title="絲綿綢" target="_blank" > 絲綿綢 </a>"
[74] => string(134) "<a href="http://kangtaisilk.cn.texnet.com.cn/pdetail--716326.html" title="色織雙宮綢" target="_blank" > 色織雙宮綢 </a>"
[75] => string(116) "<a href="http://kangtaisilk.cn.texnet.com.cn/pdetail--716324.html" title="真絲" target="_blank" > 真絲 </a>"
[76] => string(134) "<a href="http://kangtaisilk.cn.texnet.com.cn/pdetail--716321.html" title="滌絲雙宮綢" target="_blank" > 滌絲雙宮綢 </a>"
[77] => string(134) "<a href="http://kangtaisilk.cn.texnet.com.cn/pdetail--716703.html" title="緞染雙宮綢" target="_blank" > 緞染雙宮綢 </a>"
[78] => string(128) "<a href="http://kangtaisilk.cn.texnet.com.cn" target="_blank" class="green L130 english">http://kangtaisilk.cn.texnet.com.cn</a>"
[79] => string(131) "<a target="_blank" href="/enquiry/?t=company&id=15390"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[80] => string(205) "<a href="http://bysilk.cn.texnet.com.cn" title="桐鄉市博陽絲綢織造有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>博陽絲綢織造有限公司 </a>"
[81] => string(111) "<a href="http://bysilk.cn.texnet.com.cn/pdetail--844020.html" title="絲麻" target="_blank" > 絲麻 </a>"
[82] => string(111) "<a href="http://bysilk.cn.texnet.com.cn/pdetail--843991.html" title="圍巾" target="_blank" > 圍巾 </a>"
[83] => string(123) "<a href="http://bysilk.cn.texnet.com.cn/pdetail--843992.html" title="羊絨圍巾" target="_blank" > 羊絨圍巾 </a>"
[84] => string(129) "<a href="http://bysilk.cn.texnet.com.cn/pdetail--843993.html" title="絲羊絨圍巾" target="_blank" > 絲羊絨圍巾 </a>"
[85] => string(123) "<a href="http://bysilk.cn.texnet.com.cn/pdetail--843994.html" title="真絲圍巾" target="_blank" > 真絲圍巾 </a>"
[86] => string(118) "<a href="http://bysilk.cn.texnet.com.cn" target="_blank" class="green L130 english">http://bysilk.cn.texnet.com.cn</a>"
[87] => string(132) "<a target="_blank" href="/enquiry/?t=company&id=194739"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
[88] => string(203) "<a href="http://huafangtex.cn.texnet.com.cn" title="桐鄉市華方紡織品有限公司" target="_blank" class="L14 bigblue2"> <font color='#FF0000'>桐鄉市</font>華方紡織品有限公司 </a>"
[89] => string(122) "<a href="http://huafangtex.cn.texnet.com.cn/pdetail--1349605.html" title="毛圈布" target="_blank" > 毛圈布 </a>"
[90] => string(122) "<a href="http://huafangtex.cn.texnet.com.cn/pdetail--1349676.html" title="雙面布" target="_blank" > 雙面布 </a>"
[91] => string(116) "<a href="http://huafangtex.cn.texnet.com.cn/pdetail--1349970.html" title="汗布" target="_blank" > 汗布 </a>"
[92] => string(128) "<a href="http://huafangtex.cn.texnet.com.cn/pdetail--1350037.html" title="人棉汗布" target="_blank" > 人棉汗布 </a>"
[93] => string(140) "<a href="http://huafangtex.cn.texnet.com.cn/pdetail--1349631.html" title="全棉竹節毛圈" target="_blank" > 全棉竹節毛圈 </a>"
[94] => string(126) "<a href="http://huafangtex.cn.texnet.com.cn" target="_blank" class="green L130 english">http://huafangtex.cn.texnet.com.cn</a>"
[95] => string(132) "<a target="_blank" href="/enquiry/?t=company&id=236133"><img src="/images/enquire.gif" style="cursor:pointor" align="absbottom"></a>"
}
}
是不是很簡單,很暴力,很直接。