通过图片URL下载图片到本地

来源:互联网 发布:vb 创建文件夹 编辑:程序博客网 时间:2024/05/21 15:01
$imgUrl = 'http://offlintab.firefoxchina.cn/static/img/search/baidu_web.png';
ob_clean();
ob_start();
readfile($imgUrl);
$img = ob_get_contents();

ob_end_clean();

$imgName = 'test.jpg';    //自定义图片名称

$savePath = './test';          //自定图片存放路径

$fp = fopen($savePath.$imgName,'w');
fwrite($fp,$img);

fclose($fp);



0 0
原创粉丝点击