PHP下载mp3文件, 图片等到本地

//下载文件
$url = 'http://xxx.com/99248982.mp3';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
$rawdata = curl_exec($ch);
curl_close($ch);
$file_path = dirname(__FILE__) . '/temp/' . time() . '.mp3';
$fp = fopen($file_path, 'w');
fwrite($fp, $rawdata);
fclose($fp);
// 上传到upyun
$cdn = uploadToUpyun($file_path, 'audio/' . date('Ymd'), $info['uuid'] . '.mp3');
发布了44 篇原创文章 · 获赞 22 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/qq_38832501/article/details/102676591