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