Home  >  Article  >  Backend Development  >  Get a remote image and save it locally_PHP tutorial

Get a remote image and save it locally_PHP tutorial

WBOY
WBOYOriginal
2016-07-20 11:05:20781browse


//
// Function: Get the remote image and save it locally
//
//
// Make sure you have Permission to write files to the local server
//
//
// Variable description:
// $url is the complete URL address of the remote image and cannot be empty.
// $filename is an optional variable: if empty, the local file name will be automatically generated based on time and date
//.

function GrabImage($url,$filename="") {
if($url==""):return false;endif;

if($filename=="") {
$ext=strrchr($url,".");
if($ext!=".gif" && $ext!=".jpg"):return false;endif;
$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;
}


$img=GrabImage("http://news.bbc.co.uk/images/_1978837_detector_ap100.jpg","");
if($img):echo '

<img src="'.$img.'">
';
else:echo "false";
endif;

?> ;


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445126.htmlTechArticle?php // // Function: Get the remote image and save it locally // // // OK You have permission to write files to the local server // // // Variable description: // $url is the complete remote image...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn