程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> CodeIgniter實現從網站抓取圖片並自動下載到文件夾裡的方法

CodeIgniter實現從網站抓取圖片並自動下載到文件夾裡的方法

編輯:PHP綜合

本文實例講述了CodeIgniter實現從網站抓取圖片並自動下載到文件夾裡的方法。分享給大家供大家參考。具體如下:

因為某網站看圖比較坑爹,要一頁一頁的翻頁。。。。所以。。。。就寫了這麼個東西

(我是產品不是程序員)運行速度簡直無法忍受,而且經常會有錯誤發生,所以希望大家幫忙改進(PHP)。

當然也歡迎看到PYTHON,GOLANG的版本~~^_^

1. controllers:

$this->load->helper('date');
$this->load->helper('phpQuery');
//我是把phpQuery單文件放到helper裡了

2. view:

這裡只是為了快速出產品,所以直接在VIEW裡寫的代碼,請無視變量名。。。

<?php
$imageslist = phpQuery::newDocumentFile('http://g.e-hentai.org/g/xxxxx/xxxxxxx/');
//首頁
$pn = 1;//頁數
$ps = $imageslist->find('.ptt td a');//從首頁抓頁面導航
//從頁面導航開始獲取頁面內容
foreach($ps as $p)
{
  echo '第'.$pn++.'頁:<a href="'.pq($p)->attr("href").'"/></br>';
  $imagesnow = phpQuery::newDocumentFile(pq($p)->attr("href"));
  //單頁內容
  $images = $imagesnow->find('#gdt a');//抓取圖片頁列表
  foreach($images as $image)
  {
    echo '<a href="'.pq($image,$imagesnow)->attr("href").'"/></br>';
    $imagebigs = phpQuery::newDocumentFile(pq($image,$imagesnow)->attr("href"));
    //獲取單圖片頁地址
    echo '<img src="'.$imagebigs->find('#i3 img')->attr('src').'"></br>';//輸出圖片
    ob_start();
    readfile($imagebigs->find('#i3 img')->attr('src'));
    $img = ob_get_contents();
    ob_end_clean();
    $filename='img/'.now().'.jpg';
    $f=fopen($filename,'a');
    fwrite($f,$img);
    fclose($f);
  }
}
?>

希望本文所述對大家基於CodeIgniter的php程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved