《PHP實(shí)戰(zhàn):php實(shí)現(xiàn)獲取文章內(nèi)容第一張圖片的方法》要點(diǎn):
本文介紹了PHP實(shí)戰(zhàn):php實(shí)現(xiàn)獲取文章內(nèi)容第一張圖片的方法,希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
本文實(shí)例講述了php實(shí)現(xiàn)獲取文章內(nèi)容第一張圖片的辦法.分享給大家供大家參考.具體分析如下:PHP實(shí)例
采用php獲取文章內(nèi)容的第一張圖片辦法非常的簡(jiǎn)單,我們最常用的是使用正則了,感興趣的朋友可以參考一下下面這段代碼.PHP實(shí)例
以下是關(guān)于選取文章中第一張圖片的代碼:PHP實(shí)例
代碼如下:
$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);
dump($thePics);
if( $allPics> 0 ){
??? echo "<img src='".$match[1]."' title='".$match[1]."'>";//獲取的圖片名稱(chēng)
}
else {
??? echo "沒(méi)有圖片";
}
//**************
$soContent = $info['content'];
$soImages = '~<img [^>]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
dump($thePics);
if( $allPics> 0 ){
??? echo $thePics[0][0]; //獲取的整個(gè)Img屬性
} else {
??? echo "沒(méi)有圖片";
}
//**************
$soImages = '~<img [^>]* />~';
$str=$info['content'];
preg_match_all($soImages,$str,$ereg);//正則表達(dá)式把圖片的整個(gè)都獲取出來(lái)了
$img=$ereg[0][0];//圖片
$p="#src=('|\")(.*)('|\")#isU";//正則表達(dá)式
preg_match_all ($p, $img, $img1);
?? $img_path =$img1[2][0];//獲取第一張圖片路徑
if(!$img_path){
??? $img_path="images/nopic.jpg";
} //如果新聞中不存在圖片,用默認(rèn)的nopic.jpg替換 */
echo $img_path;
//*************88
$str=$info['content'];
preg_match_all("/<img.*\>/isU",$str,$ereg);//正則表達(dá)式把圖片的整個(gè)都獲取出來(lái)了
$img=$ereg[0][0];//圖片
$p="#src=('|\")(.*)('|\")#isU";//正則表達(dá)式
preg_match_all ($p, $img, $img1);
?? $img_path =$img1[2][0];//獲取第一張圖片路徑
if(!$img_path){
??? $img_path="images/nopic.jpg";
} //如果新聞中不存在圖片,用默認(rèn)的nopic.jpg替換 */
echo $img_path;
希望本文所述對(duì)大家的PHP程序設(shè)計(jì)有所幫助.PHP實(shí)例
維易PHP培訓(xùn)學(xué)院每天發(fā)布《PHP實(shí)戰(zhàn):php實(shí)現(xiàn)獲取文章內(nèi)容第一張圖片的方法》等實(shí)戰(zhàn)技能,PHP、MYSQL、LINUX、APP、JS,CSS全面培養(yǎng)人才。
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.snjht.com/jiaocheng/14241.html