你好我有一个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时。
感谢您的帮助