php 获取文章内容的第一张图片示例
发布:smiling 来源: PHP粉丝网 添加日期:2015-04-09 15:08:37 浏览: 评论:0
php 获取文章内容的第一张图片方法非常的简单,我们最常用的是使用了正则了,下面与小伙伴一起来看看吧.
以下是关于选取文章中第一张图片的代码:
- $obj=M("News");
- $info=$obj->where('id=1')->find();
- //方法1*********
- $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); //开源软件:phpfensi.com
- 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]; //获取的整个Img属性
- } 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";
- } //如果新闻中不存在图片,用默认的nopic.jpg替换 */
- echo $img_path;
- //*************88
- $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";
- } //如果新闻中不存在图片,用默认的nopic.jpg替换 */
- echo $img_path;
Tags: php内容图片 php文章图片
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)