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');

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM