碧蓝下载站 - 为大家提供一手绿色软件下载服务
首页 > 文章中心 > 软件使用 >PHP下载远程图片的方法汇总

PHP下载远程图片的方法汇总

2017-04-23 
偶要下载站整理了关于PHP下载远程图片的几种方法,希望对您有所帮助!
本文演示3个从远程URL下载图片,并保存到本地文件中的方法,包括file_get_contents,curl和fopen。


1. 使用file_get_contents

1
2
3
4
5
function dlfile($file_url, $save_to)
{
 $content = file_get_contents($file_url);
 file_put_contents($save_to, $content);
}


2.使用CURL
1
2
3
4
5
6
7
8
9
10
11
12
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);
}


3.使用fopen
1
2
3
4
5
6
7
8
9
10
11
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);
}

本站发布的游戏及软件均来源于网络,仅用于人个测试学习使用,不得使用于任何商业用途,请在下载后24小时内删除,请支持正版软件。

如侵犯到您的权益,请及时通知我们,我们会及时处理。邮箱:downbl@163.com

【豫ICP备2023010253号-1】 Copyright @ 2023 碧蓝下载站