/**
* 下載遠(yuǎn)程圖片
* @param string $url 圖片的絕對url
* @param string $filepath 文件的完整路徑(例如/www/images/test) ,此函數(shù)會自動根據(jù)圖片url和http頭信息確定圖片的后綴名
* @param string $filename 要保存的文件名(不含擴展名)
* @return mixed 下載成功返回一個描述圖片信息的數(shù)組,下載失敗則返回false
*/
public function downloadImage($url, $filepath, $filename)
{
//服務(wù)器返回的頭信息
$responseHeaders = array();
//原始圖片名
$originalfilename = '';
//圖片的后綴名
$ext = '';
$ch = curl_init($url);
//設(shè)置curl_exec返回的值包含Http頭
curl_setopt($ch, CURLOPT_HEADER, 1);
//設(shè)置curl_exec返回的值包含Http內(nèi)容
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//設(shè)置抓取跳轉(zhuǎn)(http 301,302)后的頁面
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//設(shè)置最多的HTTP重定向的數(shù)量
curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
//服務(wù)器返回的數(shù)據(jù)(包括http頭信息和內(nèi)容)
$html = curl_exec($ch);
//獲取此次抓取的相關(guān)信息
$httpinfo = curl_getinfo($ch);
curl_close($ch);
if ($html !== false) {
//分離response的header和body,由于服務(wù)器可能使用了302跳轉(zhuǎn),所以此處需要將字符串分離為 2+跳轉(zhuǎn)次數(shù) 個子串
$httpArr = explode("\r\n\r\n", $html, 2 + $httpinfo['redirect_count']);
//倒數(shù)第二段是服務(wù)器最后一次response的http頭
$header = $httpArr[count($httpArr) - 2];
//倒數(shù)第一段是服務(wù)器最后一次response的內(nèi)容
$body = $httpArr[count($httpArr) - 1];
$header .= "\r\n";
//獲取最后一次response的header信息
preg_match_all('/([a-z0-9-_]+):\s*([^\r\n]+)\r\n/i', $header, $matches);
if (!empty($matches) && count($matches) == 3 && !empty($matches[1]) && !empty($matches[1])) {
for ($i = 0; $i < count($matches[1]); $i++) {
if (array_key_exists($i, $matches[2])) {
$responseHeaders[$matches[1][$i]] = $matches[2][$i];
}
}
}
//獲取圖片后綴名
if (0 < preg_match('{(?:[^\/\\\\]+)\.(jpg|jpeg|gif|png|bmp)$}i', $url, $matches)) {
$originalfilename = $matches[0];
$ext = $matches[1];
} else {
if (array_key_exists('Content-Type', $responseHeaders)) {
if (0 < preg_match('{image/(\w+)}i', $responseHeaders['Content-Type'], $extmatches)) {
$ext = $extmatches[1];
}
}
}
//保存文件
if (!empty($ext)) {
//如果目錄不存在,則先要創(chuàng)建目錄
if (!is_dir($filepath)) {
mkdir($filepath, 0777, true);
}
$filepath .= '/' . $filename . ".$ext";
$local_file = fopen($filepath, 'w');
if (false !== $local_file) {
if (false !== fwrite($local_file, $body)) {
fclose($local_file);
$sizeinfo = getimagesize($filepath);
// return array('filepath' => realpath($filepath), 'width' => $sizeinfo[0], 'height' => $sizeinfo[1], 'orginalfilename' => $originalfilename, 'filename' => pathinfo($filepath, PATHINFO_BASENAME));
return array('orginalfilename' => $originalfilename, 'filename' => pathinfo($filepath, PATHINFO_BASENAME));
}
}
}
}
return false;
}
PHP下載遠(yuǎn)程圖片
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。
相關(guān)閱讀更多精彩內(nèi)容
- public function getFiles(){for ($i=1;$i<=393;$i++){$this-...
- 起由 由于最近的“凈網(wǎng)”行動,很多網(wǎng)盤包括我一直在使用的快盤關(guān)停,仍然存活的百度云、360云等又沒有l(wèi)inux客戶...
- 如今,開發(fā)應(yīng)用時,我們會從不斷增多的大量專用組件中選擇合適的。既然已經(jīng)有了 guzzlehttp/guzzle 組...
- httpclient4.3下載遠(yuǎn)程圖片,設(shè)置user-agent和偽裝成google的refer, 并設(shè)置time...