在一個WordPress博客中,我使用以下函數來抓取頁面(單張張視圖)並找到第一張圖片,如果找不到,則使用默認圖片:PHP函數來抓取第一張圖片
function catch_that_image() {
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "http://custome_url_for_default_image.png";
}
return $first_img;
}
我試圖將它粘貼到Tumblr主題中,但遇到一些問題(它不作爲PHP函數加載)。當然,我錯過了一些東西。如果任何人有解決這個問題的想法,我會很樂意嘗試。
感謝,
P.
你的意思是 「刮」? – mmcglynn 2012-04-03 18:17:03
對不起:網頁抓取,抓取,收穫......我也意識到我需要PHP腳本的開始和結束標記,但添加它們並不會使該功能起作用。 – Parneix 2012-04-03 18:29:16