gpt4 book ai didi

php - 使用 curl 和 PHP 保存文件

转载 作者:可可西里 更新时间:2023-10-31 22:18:00 24 4
gpt4 key购买 nike

如何使用 curl 和 PHP 保存文件?

最佳答案

你想要这样的东西吗?

function get_file($file, $local_path, $newfilename) 
{
$err_msg = '';
echo "<br>Attempting message download for $file<br>";
$out = fopen($local_path.$newfilename,"wb");
if ($out == FALSE){
print "File not opened<br>";
exit;
}

$ch = curl_init();

curl_setopt($ch, CURLOPT_FILE, $out);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_URL, $file);

curl_exec($ch);
echo "<br>Error is : ".curl_error ( $ch);

curl_close($ch);
//fclose($handle);

}//end function

功能:它是一个函数,接受三个参数

get_file($file, $local_path, $newfilename)

$file : 是要检索的对象的文件名

$local_path : 是存放对象目录的本地路径

$newfilename : 是本地系统上的新文件名

关于php - 使用 curl 和 PHP 保存文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1006604/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com