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框架的视图文件中的所有代码。
答案 0 :(得分:0)
在Yii
中,您可以在控制器中执行以下操作:
return Yii::app()->request->sendFile($file, @file_get_contents($file),'audio/x-wav');