php聊天通知-收到新消息后如何自动播放声音

时间:2018-10-14 19:20:06

标签: php include

我想让音频文件在收到新消息后自动启动。
现在可以使用,但不会停止。我希望它仅在收到任何新消息时起作用。

<?php
include_once("header.php");
$path = "";
$TID = $_POST["TID"];
$x_res = "SELECT * FROM chat WHERE t_id='$UID' AND f_id='$TID' AND t_id_show='0' ";
$f_sql = mysqli_query($CONFIG, $x_res);
$fetch_chat = mysqli_num_rows($f_sql);
if($fetch_chat > 0){
    if($fetch_chat +1){
        echo '<iframe src="style/SD.mp3" allow="autoplay" style="display:none" ></iframe>';
    }
    echo '<q dir="ltr" style="color:red;" > '.$fetch_chat.' </q>';
}
?>

这是我要编辑的代码,仅当我收到任何新消息时才能播放。

<?php
if($fetch_chat +1){
    echo '<iframe src="style/SD.mp3" allow="autoplay" style="display:none" ></iframe>';
}
?>

1 个答案:

答案 0 :(得分:0)

<?php
if($fetch_chat +1){
    echo '<iframe src="style/SD.mp3" allow="autoplay" style="display:none" ></iframe>';
}
?>