php 擷取網站中各文章的第一張圖片的功能範例程式碼

來源:互聯網
上載者:User
調取文章中的第一張圖作為列表頁縮圖是很流行的做法,WordPress中一般主題預設也是如此,那我們接下來就一起來看看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

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.