php获取网页中图片与DIV内容实例
2020-12-13 15:52
标签:style class blog code http ext 分享下php获取网页中图片、DIV内容的简单方法,都是通过正则表达式实现的。 1、获取网页中所有的图片: 2、获取网页中的第一张图片: 3、获取指定网页中特定的 div 区块数据: 4. 上述2及3的結合: php获取网页中图片与DIV内容实例,搜素材,soscw.com php获取网页中图片与DIV内容实例 标签:style class blog code http ext 原文地址:http://www.cnblogs.com/yes123/p/3797027.htmlphp
//取得指定位址的內容,并储存至 $text
$text=file_get_contents(‘http://www.jbxue.com/‘);
//取得所有img标签,并储存至二维数组 $match 中
preg_match_all(‘/]*>/i‘, $text, $match);
//打印出match
print_r($match);
?>
php
//取得指定位址的內容,并储存至 $text
$text=file_get_contents(‘http://www.jbxue.com/‘);
//取得第一个 img 标签,并储存至二维数组 $match 中
preg_match(‘/]*>/Ui‘, $text, $match);
//打印出match
print_r($match);
?>
php
//取得指定位址的內容,并储存至 $text
$text=file_get_contents(‘http://www.jbxue.com/‘);
//去除换行及空白字符(序列化內容才需使用)
//$text=str_replace(array("/r","/n","/t","/s"), ‘‘, $text);
//取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中
preg_match(‘/
php
//取得指定位址的內容,并储存至 $text
$text=file_get_contents(‘http://www.jbxue.com/‘);
//取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中
preg_match(‘/