PHP 根据URL将图片下载到本地

根据URL下载图片到本地



<?php

function test() {

$url = 'http://wx.qlogo.cn/mmopen/PiajxSqBRaEKUmIia2JJ9rtp4BMPvbKD8wgmqeEQ5j6m2eoeu5GNaMDbGGWLib8dFdxJaUibSGZ2Vh9Q6mYnpCHpVA/0';


$header = array("Connection: Keep-Alive", "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8", "Pragma: no-cache", "Accept-Language: zh-Hans-CN,zh-Hans;q=0.8,en-US;q=0.5,en;q=0.3", "User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:29.0) Gecko/20100101 Firefox/29.0");

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_HEADER, $v);

curl_setopt($ch, CURLOPT_HTTPHEADER, $header);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

curl_setopt($ch, CURLOPT_ENCODING, 'gzip,deflate');


$content = curl_exec($ch);

$curlinfo = curl_getinfo($ch);

echo "string";

print_r($curlinfo);

//关闭连接

curl_close($ch);


if ($curlinfo['http_code'] == 200) {

if ($curlinfo['content_type'] == 'image/jpeg') {

$exf = '.jpg';

} else if ($curlinfo['content_type'] == 'image/png') {

$exf = '.png';

} else if ($curlinfo['content_type'] == 'image/gif') {

$exf = '.gif';

}

//存放图片的路径及图片名称  *****这里注意 你的文件夹是否有创建文件的权限 chomd -R 777 mywenjian

$filename = date("YmdHis") . uniqid() . $exf;//这里默认是当前文件夹,可以加路径的 可以改为$filepath = '../'.$filename

$res = file_put_contents($filename, $content);//同样这里就可以改为$res = file_put_contents($filepath, $content);

}

}

test();

?>

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值