php获取网页中图片、DIV内容的简单方法_PHP

WBOY
Libérer: 2016-06-01 11:50:47
original
1560 Les gens l'ont consulté

1、获取网页中所有的图片:
复制代码 代码如下:
//取得指定位址的內容,并储存至 $text 
$text=file_get_contents('http://www.bitsCN.com/');   
 
//取得所有img标签,并储存至二维数组 $match 中  
preg_match_all('/php获取网页中图片、DIV内容的简单方法_PHP]*>/i', $text, $match);  
 
//打印出match  
print_r($match);  
?>

2、获取网页中的第一张图片:
复制代码 代码如下:
//取得指定位址的內容,并储存至 $text 
$text=file_get_contents('http://www.bitsCN.com/'); 

//取得第一个 img 标签,并储存至二维数组 $match 中  
preg_match('/php获取网页中图片、DIV内容的简单方法_PHP]*>/Ui', $text, $match);

//打印出match
print_r($match);
?>

3、获取指定网页中特定的 div 区块数据:
复制代码 代码如下:
//取得指定位址的內容,并储存至 $text  
$text=file_get_contents('http://www.bitsCN.com/'); 

//去除换行及空白字符(序列化內容才需使用)
//$text=str_replace(array("/r","/n","/t","/s"), '', $text);  

//取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中  
preg_match('/

]*id="PostContent"[^>]*>(.*?) /div>/si',$text,$match);

//打印出match[0]
print($match[0]);
?>

4. 上述2及3的結合:

复制代码 代码如下:
//取得指定位址的內容,并储存至 $text  
$text=file_get_contents('http://www.bitsCN.com/');     
 
//取出 div 标签且 id 为 PostContent 的內容,并储存至二维数组 $match 中  
preg_match('/

]*id="PostContent"[^>]*>(.*?) /div>/si',$text,$match);  
 
//取得第一个 img 标签,并储存至二维数组 $match2 中  
preg_match('/php获取网页中图片、DIV内容的简单方法_PHP]*>/Ui', $text, $match2);  
 
//打印出match2[0]  
print_r($match2[0]);  
?>
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal