PHP下載採集圖片到本地
阿新 • • 發佈:2018-12-28
readfile和file_put_contents下載遠端圖片到本地
<?php
function download_image($pic_url)
{
$time = time();
$pic_local_path = dirname(__FILE__) . '/cache';
$pic_local = $pic_local_path . '/' . $time;
if (!file_exists($pic_local_path)) {
mkdir($pic_local_path, 0777);
@chmod ($pic_local_path, 0777);
}
ob_start(); //開啟輸出
readfile($pic_url); //輸出圖片檔案
$img = ob_get_contents(); //得到瀏覽器輸出
ob_end_clean(); //清除輸出並關閉
file_put_contents($pic_local, $img);
return $pic_local;
}
curl下載遠端圖片到本地
<?php
$ch = curl_init();
$fp=fopen('./girl.jpg', 'w');
curl_setopt ($ch, CURLOPT_URL, "https://img02.sogoucdn.com/app/a/100520091/20181209114105");
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 100);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_FILE, $fp);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
$error = curl_error($ch);
fclose($fp);
$size = filesize("./girl.jpg");
if ($size != $info['size_download']) {
echo "下載失敗";
echo $error;
} else {
echo "下載成功";
}
curl_close($ch);
/**
* 下載遠端圖片到本地
*
* @param string $url 遠端檔案地址
* @param string $filename 儲存後的檔名(為空時則為隨機生成的檔名,否則為原檔名)
* @param array $fileType 允許的檔案型別
* @param string $dirName 檔案儲存的路徑(路徑其餘部分根據時間系統自動生成)
* @param int $type 遠端獲取檔案的方式
* @return json 返回檔名、檔案的儲存路徑
* @author blog.snsgou.com
*/
function download_image($url, $fileName = '', $dirName, $fileType = array('jpg', 'gif', 'png'), $type = 1)
{
if ($url == '')
{
return false;
}
// 獲取檔案原檔名
$defaultFileName = basename($url);
// 獲取檔案型別
$suffix = substr(strrchr($url, '.'), 1);
if (!in_array($suffix, $fileType))
{
return false;
}
// 設定儲存後的檔名
$fileName = $fileName == '' ? time() . rand(0, 9) . '.' . $suffix : $defaultFileName;
// 獲取遠端檔案資源
if ($type)
{
$ch = curl_init();
$timeout = 30;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file = curl_exec($ch);
curl_close($ch);
}
else
{
ob_start();
readfile($url);
$file = ob_get_contents();
ob_end_clean();
}
// 設定檔案儲存路徑
//$dirName = $dirName . '/' . date('Y', time()) . '/' . date('m', time()) . '/' . date('d', time());
$dirName = $dirName . '/' . date('Ym', time());
if (!file_exists($dirName))
{
mkdir($dirName, 0777, true);
}
// 儲存檔案
$res = fopen($dirName . '/' . $fileName, 'a');
fwrite($res, $file);
fclose($res);
return array(
'fileName' => $fileName,
'saveDir' => $dirName
);
}
PHP讀寫大 二進位制 檔案
不必申請很大記憶體(fopen、fread、fwrite、fclose)
<?php
/**
* 讀寫大二進位制檔案,不必申請很大記憶體
* 只有讀取到內容才建立檔案
* 保證目錄可寫
*
* @param string $srcPath 原始檔路徑
* @param string $dstPath 目標檔案路徑
* @return bool
*/
function fetch_big_file($srcPath, $dstPath)
{
set_time_limit(0); // 設定指令碼執行時間無限長
if (!$fpSrc = fopen($srcPath, "rb"))
{
return false;
}
$isWriteFileOpen = false; // 寫檔案 是否已開啟?
do
{
$data = fread($fpSrc, 8192); // 每次讀取 8*1024個位元組
if (!$data)
{
break;
}
else if (!$isWriteFileOpen)
{
// 第一次讀取檔案,並且有內容,才建立檔案
$fpDst = fopen($dstPath, "wb");
$isWriteFileOpen = true;
fwrite($fpDst, $data);
}
else
{
// 寫入
fwrite($fpDst, $data);
}
} while (true);
fclose($fpSrc);
fclose($fpDst);
return true;
}
$srcPath = 'd:/big.pdf';
$dstPath = 'Z:/big.pdf';
fetch_big_file($srcPath, $dstPath);
echo 'success';