>  기사  >  백엔드 개발  >  원격 파일을 로컬 저장소에 다운로드하는 PHP 코드

원격 파일을 로컬 저장소에 다운로드하는 PHP 코드

WBOY
WBOY원래의
2016-07-25 08:43:221009검색
  1. function GrabImage($url,$filename="") {
  2. if($url=="") return false;
  3. if($filename=="") {
  4. $ext=strrchr($url,".");
  5. if($ext!=".gif" && $ext!=".jpg") return false;
  6. $filename=date("dMYHis").$ext;
  7. }
  8. ob_start();
  9. readfile($url);
  10. $img = ob_get_contents();
  11. ob_end_clean();
  12. $size = strlen($img);
  13. $fp2=@fopen($filename, "a");
  14. fwrite($fp2,$img);
  15. fclose($fp2);
  16. return $filename;
  17. }
  18. function gethttpimage($url){
  19. if(!empty($url)){
  20. $filename=uniqid().strrchr($url,".");
  21. echo $filename;
  22. $get_file=@file_get_contents($url);
  23. if($get_file){
  24. $fp=@fopen($filename,"w");
  25. @fwrite($fp,$get_file);
  26. @fclose($fp);
  27. }
  28. return $imgUrl;
  29. }else{
  30. return false;
  31. }
  32. }
  33. //$img=GrabImage("http://img.it-home.org/data/attachment/forum/2016pic1/error_link.gif","");
  34. $img=gethttpimage("http://img.it-home.org/data/attachment/forum/2016pic1/error_link.gif","");
  35. if($img) echo '
    <img src="'.$img.'">
    ';
  36. else echo "false";
  37. ?>
复制代码

PHP


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
이전 기사:PHP zip 압축 코드다음 기사:PHP zip 압축 코드