以前写项目的时候,每次发布一篇新文章都要上传一张封面图片,感觉有点麻烦,这次写博客为了省力就写了一个方法获取发布内容中的一张图片,没有图片就默认一张。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| function get_content_image($str){ preg_match_all("/<img.*\>/isU",$str,$ereg); if(!empty($ereg[0])){ $img=$ereg[0][0]; $p="#src=('|\")(.*)('|\")#isU"; preg_match_all ($p, $img, $img1); $img_path =$img1[2]; if(empty($img_path)){ $img_path="/uploads/default.jpg"; }else{ $img_path =$img1[2][0]; } }else{ $img_path="/uploads/default.jpg"; } return $img_path; }
|
方法写好之后,再发布文章的时候直接调用即可。
1
| $info['images'] = get_content_image($info['content']);
|