VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php获取文章内容里面的图片的方法

  1. function getpic($str){ 
  2.     preg_match_all("//isU",$str,$ereg);//正则表达式把图片的整个都获取出来了  
  3.     $img=$ereg[0][0];//图片 
  4.     $p="#src=('|\")(.*)('|\")#isU";//正则表达式 
  5.     preg_match_all ($p$img$img1);  
  6.     $img_path =$img1[2][0];//获取第一张图片路径 
  7. // print_r($img_path);   
  8.     return $img_path;  
  9.     } 
  10.  
  11. $imgs=getpic($row['post_content']); 
  12. $row['post_content'//获取数据库里面的文章的内容。 

出处:http://www.phpfensi.com/php/20140723/3913.html


相关教程