PHP to download remote files to local storage, _ PHP Tutorial

Source: Internet
Author: User
PHP downloads remote files to local storage ,. PHP downloads remote files to local storage. this example describes how PHP downloads remote files to local storage. Share it with you for your reference. The specific implementation method is as follows: the method of downloading remote files to local storage by p PHP,

This example describes how to download remote files to local storage in PHP. Share it with you for your reference. The specific implementation method is as follows:

<?phpfunction GrabImage($url,$filename="") {  if($url=="") return false;  if($filename=="") {    $ext=strrchr($url,".");    if($ext!=".gif" && $ext!=".jpg") return false;    $filename=date("dMYHis").$ext;  }  ob_start();  readfile($url);  $img = ob_get_contents();  ob_end_clean();  $size = strlen($img);  $fp2=@fopen($filename, "a");  fwrite($fp2,$img);  fclose($fp2);  return $filename;}function gethttpimage($url){   if(!empty($url)){     $filename=uniqid().strrchr($url,".");     echo $filename;    $get_file=@file_get_contents($url);     if($get_file){       $fp=@fopen($filename,"w");       @fwrite($fp,$get_file);       @fclose($fp);     }     return $imgUrl;   }else{     return false;   } } //$img=GrabImage("http://www.bkjia.com/images/logo.gif","");$img=gethttpimage("http://www.bkjia.com/images/logo.gif","");if($img) echo '
';else echo "false";?>

I hope this article will help you with php programming.

Example: This article describes how to download remote files to local storage in PHP. Share it with you for your reference. The specific implementation method is as follows: p...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.