button.css
简洁、直观、强悍的前端开发框架,让web开发更迅速、简单。
button.css100素材网 开发,欢迎广大前端码农使用。有好的建议欢迎给我们 留言 哦!
文章来源: 100素材网 更新时间: 2014-08-22 15:34:38
php 获取网页数据 网页php获取 php获取a标签 php 获取网页的内容
以下代码主要实现了怎样通过PHP获取一个网页上所有a标签连接,需要的朋友可以参考下
<?php
$html = file_get_contents('http://www.100sucai.com');
$dom = new DOMDocument();
@$dom->loadHTML($html);
// grab all the on the page
$xpath = new DOMXPath($dom);
$hrefs = $xpath->evaluate("/html/body//a");

for ($i = 0; $i < $hrefs->length; $i++) {
       $href = $hrefs->item($i);
       $url = $href->getAttribute('href');
       echo $url.'<br />';
}
?>    
除非特别声明,此稿为原稿转载请注明原文链接
原文地址: http://www.www100sucai.com/code/1293.html

浏览次数

标签分类

站长空间
站长博客