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

來源:互聯網
上載者:User
這篇文章主要介紹了php擷取文章內容第一張圖片的方法,涉及php針對圖片的正則匹配操作技巧,需要的朋友可以參考下

具體如下:

<?php$temp=mt_rand(1,4);$pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/";$content = $article->Content; //文章內容preg_match_all($pattern,$content,$matchContent);if(isset($matchContent[1][0])){  $temp=$matchContent[1][0];}else{  $temp="images/random/$temp.jpg";//需要在相應位置放置4張jpg的檔案,名稱為1,2,3,4}?>

以上代碼預設調用文章首張圖片,當文章沒有圖片的時候,隨機調用主題style/images/random/下的1.jpg、2.jpg、3.jpg、4.jpg圖片。如果不想調用隨機圖片,可以修改一下:

<?php$pattern="/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg|\.png]))[\'|\"].*?[\/]?>/";$content = $article->Content; //文章內容preg_match_all($pattern,$content,$matchContent);if(isset($matchContent[1][0])){  $temp=$matchContent[1][0];}else{  $temp="./images/no-image.jpg";//在相應位置放置一張命名為no-image的jpg圖片}?>

調用文章首張圖片,如果文章沒有圖片就調用預設圖片no-image.jpg

相關推薦:

PHP實現擷取圖片的主色調的方法

PHP擷取圖片寬度高度、大小尺寸、圖片類型、用於布局的img屬性

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.