php實現擷取文章內容第一張圖片的方法,_PHP教程

來源:互聯網
上載者:User

php實現擷取文章內容第一張圖片的方法,


本文執行個體講述了php實現擷取文章內容第一張圖片的方法。分享給大家供大家參考。具體分析如下:

採用php擷取文章內容的第一張圖片方法非常的簡單,我們最常用的是使用正則了,感興趣的朋友可以參考一下下面這段代碼。

以下是關於選取文章中第一張圖片的代碼:

複製代碼 代碼如下:$obj=M("News");
$info=$obj->where('id=1')->find();
//方法1*********
$soContent = $info['content'];
$soImages = '~]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
preg_match('//i',$thePics[0][0],$match);
dump($thePics);
if( $allPics> 0 ){
echo "";//擷取的圖片名稱
}
else {
echo "沒有圖片";
}
//**************
$soContent = $info['content'];
$soImages = '~]* />~';
preg_match_all( $soImages, $soContent, $thePics );
$allPics = count($thePics[0]);
dump($thePics);
if( $allPics> 0 ){
echo $thePics[0][0]; //擷取的整個Img屬性
} else {
echo "沒有圖片";
}
//**************
$soImages = '~]* />~';
$str=$info['content'];
preg_match_all($soImages,$str,$ereg);//Regex把圖片的整個都擷取出來了
$img=$ereg[0][0];//圖片
$p="#src=('|\")(.*)('|\")#isU";//Regex
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("//isU",$str,$ereg);//Regex把圖片的整個都擷取出來了
$img=$ereg[0][0];//圖片
$p="#src=('|\")(.*)('|\")#isU";//Regex
preg_match_all ($p, $img, $img1);
$img_path =$img1[2][0];//擷取第一張圖片路徑
if(!$img_path){
$img_path="images/nopic.jpg";
} //如果新聞中不存在圖片,用預設的nopic.jpg替換 */
echo $img_path;

希望本文所述對大家的PHP程式設計有所協助。




http://www.bkjia.com/PHPjc/906118.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/906118.htmlTechArticlephp實現擷取文章內容第一張圖片的方法, 本文執行個體講述了php實現擷取文章內容第一張圖片的方法。分享給大家供大家參考。具體分析如下:...

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.