1、获取网页中所有的图片:
01 | <?php |
02 | //取得指定位址的內容,并储存至 $text |
03 | $text = file_get_contents ( 'http://camnpr.com/' ); |
04 | |
05 | //取得所有img标签,并储存至二维数组 $match 中 |
06 | preg_match_all( '/<img[^>]*>/i' , $text , $match ); |
07 | |
08 | //打印出match |
09 | print_r( $match ); |
10 | ?> |
2、获取网页中的第一张图片:
1 | <?php |
2 | //取得指定位址的內容,并储存至 $text |
3 | $text = file_get_contents ( 'http://camnpr.com/' ); |
4 | //取得第一个 img 标签,并储存至二维数组 $match 中 |
5 | preg_match( '/<img[^>]*>/Ui' , $text , $match ); |
6 | //打印出match |
7 | print_r( $match ); |
8 | ?> |
3、获取指定网页中特定的 div 区块数据:
01 | <?php |
02 | //取得指定位址的內容,并储存至 $text |
03 | $text = file_get_contents ( 'http://wwwcamnpr.com/' ); |
04 | //去除换行及空白字符(序列化內容才需使用) |
05 | //$text=str_replace(array("/r","/n","/t","/s"), '', $text); |
06 | /取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中 |
07 | preg_match( '/<div[^>]*id="PostContent"[^>]*>(.*?) <//div>/si' , $text , $match ); |
08 | //打印出match[0] |
09 | print( $match [0]); |
10 | ?> |
4. 上述2及3的結合:
01 | <?php |
02 | //取得指定位址的內容,并储存至 $text |
03 | $text = file_get_contents ( 'http://camnpr.com/' ); |
04 | |
05 | //取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中 |
06 | preg_match( '/<div[^>]*id="PostContent"[^>]*>(.*?) <//div>/si' , $text , $match ); |
07 | |
08 | //取得第一个 img 标签,并储存至二维数组 $match2 中 |
09 | preg_match( '/<img[^>]*>/Ui' , $text , $match2 ); |
10 | |
11 | //打印出match2[0] |
12 | print_r( $match2 [0]); |
13 | ?> |