我正在使用此脚本从其他服务器下载音频文件。
if(check_url($url)) {
if(ini_get('zlib.output_compression')) {
ini_set('zlib.output_compression', 'Off');
}
header('Content-Description: File Transfer');
header('Content-Type: audio/mpeg');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($url));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
readfile($url);
die();
}
$url
是文件网址。
在我的Vagrant机器上,脚本运行正常。但是在服务器上,下载的文件有0b。