php最强下载远程图片到本地代码
Posted 有解php
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php最强下载远程图片到本地代码相关的知识,希望对你有一定的参考价值。
文章简介
本文提供一段好用的下载远程图片到本地的功能代码。
使用场景
用代码下载远程图片到本地的需求很常见咯,比如说做一个网页相册,要求提供图片下载功能。当然用前端代码也能实现图片下载,不过如果要求对图片自定义命名,指定目录或其他稍微复杂一点的操作,还是用后端代码处理起来比较方便。
代码实例
(1)工具方法:
/**
* 下载远程图片
* @param string $url 图片的绝对url
* @param string $filepath 文件的完整路径(例如/www/images/test) ,此函数会自动根据图片url和http头信息确定图片的后缀名
* @param string $filename 要保存的文件名(不含扩展名)
* @return mixed 下载成功返回一个描述图片信息的数组,下载失败则返回false
*/
function downloadImage($url, $filepath, $filename) {
//服务器返回的头信息
$responseHeaders = array();
//原始图片名
$originalfilename = '';
//图片的后缀名
$ext = '';
$ch = curl_init($url);
//设置curl_exec返回的值包含Http头
curl_setopt($ch, CURLOPT_HEADER, 1);
//设置curl_exec返回的值包含Http内容
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//设置抓取跳转(http 301,302)后的页面
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
//设置最多的HTTP重定向的数量
curl_setopt($ch, CURLOPT_MAXREDIRS, 3);
//服务器返回的数据(包括http头信息和内容)
$html = curl_exec($ch);
//获取此次抓取的相关信息
$httpinfo = curl_getinfo($ch);
curl_close($ch);
if ($html !== false) {
//分离response的header和body,由于服务器可能使用了302跳转,所以此处需要将字符串分离为 2+跳转次数 个子串
$httpArr = explode("\r\n\r\n", $html, 2 + $httpinfo['redirect_count']);
//倒数第二段是服务器最后一次response的http头
$header = $httpArr[count($httpArr) - 2];
//倒数第一段是服务器最后一次response的内容
$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)) {
//如果目录不存在,则先要创建目录
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 false;
}
(2)调用工具方法:
//调用上面的方法,将图片下载到D盘youjiephp目录,重命名为dangao
downloadImage(
//这是图片url
'http://06imgmini.eastday.com/mobile/20181103/20181103215750_cb0a85d841fb1370cb75a424ee40e6d8_2_mwpm_03200403.jpg',
//指定本地下载目录
'D:/youjiephp',
//指定图片重命名
'dangao'
);
(3)运行结果:
https://gitee.com/Hollis163com/downloadpic.git
本文完!
文章有不足之处,请小伙伴们多多留言指正。喜欢老湿文章的小伙伴请多多点赞和评论哦~
以上是关于php最强下载远程图片到本地代码的主要内容,如果未能解决你的问题,请参考以下文章
使用ThinkPHP自带的Http类下载远程图片到本地的实现代码