首頁  >  文章  >  後端開發  >  php下載網頁圖片有哪些方法

php下載網頁圖片有哪些方法

(*-*)浩
(*-*)浩原創
2019-09-16 14:06:403985瀏覽

PHP下載網路圖片的幾種方法總結

php下載網頁圖片有哪些方法

#本文示範3個從網路下載圖片,並儲存到本機檔案中的方法,包括file_get_contents,curl和fopen。

使用file_get_contents(推薦學習:PHP程式設計從入門到精通

function dlfile($file_url, $save_to)
{
 $content = file_get_contents($file_url);
 file_put_contents($save_to, $content);
}

使用CURL

#
function dlfile($file_url, $save_to)
{
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_POST, 0); 
 curl_setopt($ch,CURLOPT_URL,$file_url); 
 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);
}

使用fopen

function dlfile($file_url, $save_to)
{
 $in=  fopen($file_url, "rb");
 $out=  fopen($save_to, "wb");
 while ($chunk = fread($in,8192))
 {
 fwrite($out, $chunk, 8192);
 }
 fclose($in);
 fclose($out);
}

以上是php下載網頁圖片有哪些方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

相關文章

看更多