本文示範3個從遠端URL下載圖片,並儲存到本機檔案的方法,包括file_get_contents,curl和fopen。
1. 使用file_get_contents
function dlfile($file_url, $save_to)
{
$content = file_get_contents($file_url); dlfile($file_url, $save_to)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_POST, 0);URcomfUR
,CURLOPT,$dURm, 0);URcom_cURcURL,003000007_ fwww;URSfURSfUR.
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$file_content = curl_exec($ch);
curl_close($ch);
$downloaded_file = fopen($save_to, 'w');
fwrite($downloaded_file, $file_content);
fclose($downloaded_file);}
3.使用fopenfunction dlfile($file_url, $save_to){
function dlfile($file_url, $save_to){,p ");
$out= fopen($save_to, "wb");
while ($chunk = fread($in,8192))
{unk,$ 8192);
}
fclose($in);
fclose($out);
}by iefreerfclose($out);
}by iefreer
版權聲明:本文為主原始文章,未經博主不得轉載。
以上就介紹了PHP下載遠端圖片的3個方法,包括了方面的內容,希望對PHP教學有興趣的朋友有幫助。