在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.”的文本。