我正在尝试制作一个倒数计时器,它显示产品到期前的天数,当有 0 天时,我想显示一条消息说它已过期:
<?php
$target = mktime(0, 0, 0, 1, 7, 2013) ;
$today = time () ;
$difference =($target-$today) ;
$days =(int) ($difference/86400) ;
if ($today == $target)
{
print "this product has expired";
}
else
{
print "This product expires in $days days";
}
?>
当您访问该页面时,它始终显示第二条消息,即使今天与目标日期相同。
如果可能的话,你能告诉我如何在不重新加载页面的情况下显示分钟和秒吗?我还想在还剩 0 天/分钟时更新 MySQL 数据库,这可能吗?不需要有开始/停止按钮。