最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php用xpath解析html的代碼實(shí)例講解

 更新時(shí)間:2019年02月14日 14:44:34   投稿:laozhang  
在本篇文章里小編給大家分享了關(guān)于php用xpath解析html的代碼實(shí)例講解,對此有需要的朋友們可以學(xué)習(xí)下。

實(shí)例1

$xml = simplexml_load_file('https://forums.eveonline.com'); 
 
$names = $xml->xpath("html/body/p/p/form/p/p/p/p/p[*]/p/p/table//tr/td[@class='topicViews']"); 
foreach($names as $name) 
{ 
 echo $name . "<br/>"; 
}

實(shí)例2

$url = 'http://www.baidu.com';
$ch = curl_init();
curl_setopt($ch, CURLOPT_FILE, fopen('php://stdout', 'w'));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_URL, $url);
$html = curl_exec($ch); 
curl_close($ch);
 
// create document object model
$dom = new DOMDocument();
// load html into document object model
@$dom->loadHTML($html);
// create domxpath instance
$xPath = new DOMXPath($dom);
// get all elements with a particular id and then loop through and print the href attribute
$elements = $xPath->query('//*[@id="lg"]/img/@src');
foreach ($elements as $e) {
 echo ($e->nodeValue);
}

以上就是相關(guān)的2個(gè)實(shí)例內(nèi)容,以及相關(guān)的代碼, 感謝大家對腳本之家的支持。

相關(guān)文章

最新評論

明星| 大石桥市| 如东县| 抚顺县| 九台市| 昌邑市| 察哈| 疏附县| 获嘉县| 乳源| 拜城县| 九龙坡区| 岑溪市| 原平市| 枝江市| 汶川县| 新竹县| 英吉沙县| 凤城市| 高州市| 剑川县| 瑞丽市| 麻江县| 咸阳市| 晋中市| 和硕县| 平度市| 扶沟县| 兴安盟| 白朗县| 浦北县| 固阳县| 梁平县| 衡阳县| 金塔县| 桓台县| 丹巴县| 玛多县| 赣榆县| 聂荣县| 怀宁县|