欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

CodeIgniter實現(xiàn)從網(wǎng)站抓取圖片并自動下載到文件夾里的方法

 更新時間:2015年06月17日 15:05:56   作者:許添翼  
這篇文章主要介紹了CodeIgniter實現(xiàn)從網(wǎng)站抓取圖片并自動下載到文件夾里的方法,實例分析了CodeIgniter網(wǎng)頁圖片操作的相關(guān)技巧,需要的朋友可以參考下

本文實例講述了CodeIgniter實現(xiàn)從網(wǎng)站抓取圖片并自動下載到文件夾里的方法。分享給大家供大家參考。具體如下:

因為某網(wǎng)站看圖比較坑爹,要一頁一頁的翻頁。。。。所以。。。。就寫了這么個東西

(我是產(chǎn)品不是程序員)運行速度簡直無法忍受,而且經(jīng)常會有錯誤發(fā)生,所以希望大家?guī)兔Ω倪M(PHP)。

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

1. controllers:

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

2. view:

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

<?php
$imageslist = phpQuery::newDocumentFile('http://g.e-hentai.org/g/xxxxx/xxxxxxx/');
//首頁
$pn = 1;//頁數(shù)
$ps = $imageslist->find('.ptt td a');//從首頁抓頁面導航
//從頁面導航開始獲取頁面內(nèi)容
foreach($ps as $p)
{
  echo '第'.$pn++.'頁:<a href="'.pq($p)->attr("href").'"/></br>';
  $imagesnow = phpQuery::newDocumentFile(pq($p)->attr("href"));
  //單頁內(nèi)容
  $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程序設計有所幫助。

相關(guān)文章

最新評論