要利用php获取文章中所有图片中第一张图片出来我们只需要简单的正则表达式即可实现了,下面小编来给大家分享两个实例吧。
首先看一个函数,代码如下:
- function getpic($str_img){
- preg_match_all("/<img.*>/isU",$str,$ereg);
- $img=$ereg[0][0];
- $p="#src=('|")(.*)('|")#isU";
- preg_match_all ($p, $img, $img1);
- $img_path =$img1[2][0];
- return $img_path;
- }
-
- $nr=$row_news["nr"];
- $aa=getpic($nr_a);
- if(!$aa){$aa="images/nopic.jpg";}
再看一个函数相对比较复杂了
在做项目的时候,页面的设计有时会留有文章特色图像的位置,可是有时,这篇文章反而没有上传图片,则在页面中显示的时候则是没有图片,样式上很难看,如果单纯是没有上传图片选用默认图片的时候,有时会引起一些误解,则在考虑是不是先对这个文章图片的问题细化处理,先判断是否有上传的图片,如果有则显示上传的图片,没有则判断内容中是否有图片,有则选取第一张图片作为此处的特色图片,如果连内容中也没有图片的话,则在此处显示默认图片;
以下是关于选取文章中第一张图片的代码,代码如下:
- $obj=M("News");
- $info=$obj->where('id=1')->find();
-
- $soContent = $info['content'];
- $soImages = '~<img [^>]* />~';
- preg_match_all( $soImages, $soContent, $thePics );
- $allPics = count($thePics[0]);
- preg_match('/<img.+src="?(.+.(jpg|gif|bmp|bnp|png))"?.+>/i',$thePics[0][0],$match);
- dump($thePics);
- if( $allPics> 0 ){
- echo "<img src='".$match[1]."' title='".$match[1]."'>";
- }
- else {
- echo "没有图片";
- }
-
- $soContent = $info['content'];
- $soImages = '~<img [^>]* />~';
- preg_match_all( $soImages, $soContent, $thePics );
- $allPics = count($thePics[0]);
- dump($thePics);
- if( $allPics> 0 ){
- echo $thePics[0][0];
- } else {
- echo "没有图片";
- }
-
- $soImages = '~<img [^>]* />~';
- $str=$info['content'];
- preg_match_all($soImages,$str,$ereg);
- $img=$ereg[0][0];
- $p="#src=('|")(.*)('|")#isU";
- preg_match_all ($p, $img, $img1);
- $img_path =$img1[2][0];
- if(!$img_path){
- $img_path="images/nopic.jpg";
- }
- echo $img_path;
-
- $str=$info['content'];
- preg_match_all("/<img.*>/isU",$str,$ereg);
- $img=$ereg[0][0];
- $p="#src=('|")(.*)('|")#isU";
- preg_match_all ($p, $img, $img1);
- $img_path =$img1[2][0];
- if(!$img_path){
- $img_path="images/nopic.jpg";
- }
- echo $img_path;