相关php文件 index.php header('Content-Type: audio/mpeg') $content = file_get_contents("1.mp3"); echo $content; 相关html代码 index.html <audio src="/index.php" controls="controls"></audio>
audio 的src直接链接到mp3正常吗?