如何从url PHP下载wav或mp3文件?验证后,Url播放我的剪辑

时间:2014-11-12 06:13:53

标签: php yii download

I used the following code to play my url and its working fine.
<video controls="" autoplay="" name="media"><source src="url.wav" type="audio/x-wav"></video>
  

并尝试使用以下代码进行下载

header('Content-Type: audio/x-wav');
$file = "url.wav";
if( !file_exists($file) ) die("File not found");
header("Content-Disposition: attachment; filename=" . basename($file) . "");
header("Content-Length: " . filesize($file));
header('Content-Type: audio/x-wav, audio/wav');
readfile($file);
  

我正在使用Yii框架的视图文件中的所有代码。

1 个答案:

答案 0 :(得分:0)

Yii中,您可以在控制器中执行以下操作:

return Yii::app()->request->sendFile($file, @file_get_contents($file),'audio/x-wav');