在PHP中,可以使用HTML的<audio>
标签来播放音频文件。以下是一个简单的示例:
<!DOCTYPE html>
<html>
<head>
<title>Play Audio</title>
</head>
<body>
<audio controls>
<source src="audio_file.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>
在这个示例中,<audio>
标签包含一个<source>
子标签,用于指定音频文件的路径和文件类型。用户可以通过控件来控制音频的播放、暂停、音量等。当浏览器不支持<audio>
标签时,会显示“Your browser does not support the audio element.”的文本。