使用php函数播放音频

时间:2018-01-20 16:58:19

标签: php audio

你好我有一个php函数所以:

function set_timer($data)
{
    $t = strtotime($data["staff_note"]);
    $now = strtotime(date("Y-m-d H:i:s"));

    if ($t < $now)
            $left = 0;

    else
            $left = $t - $now;

    return "<div class='timer-quick' data-seconds-left='$left'></div>";
}

然后我需要在True条件下播放音频文件,当$ left = 0时。

感谢您的帮助

0 个答案:

没有答案