码迷,mamicode.com
首页 > Web开发 > 详细

PHP通过url下载远程图片到本地

时间:2014-10-10 19:30:34      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   文件   sp   div   

<?php
/**
 * 通过图片的远程url,下载到本地
 * @param: $url为图片远程链接
 * @param: $filename为下载图片后保存的文件名
 */
function GrabImage($url,$filename) { 
 if($url==""):return false;endif; 
 
 ob_start(); 
 readfile($url); 
 $img = ob_get_contents(); 
 ob_end_clean(); 
 $size = strlen($img); 
 
 //"../../images/books/"为存储目录,$filename为文件名
 $fp2=@fopen("../../images/books/".$filename, "a"); 
 fwrite($fp2,$img); 
 fclose($fp2); 
 
 return $filename; 
 } 
?>

 

PHP通过url下载远程图片到本地

标签:style   blog   color   io   os   ar   文件   sp   div   

原文地址:http://www.cnblogs.com/shcolo/p/4016311.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!