首頁 > 後端開發 > PHP問題 > php下載網頁圖片有哪些方法

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

(*-*)浩
發布: 2023-02-24 07:54:01
原創
4042 人瀏覽過

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中文網其他相關文章!

相關標籤:
php
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板