我有一个问题需要您的帮助,如果您有任何解决方案,请帮助我。问题如下:我使用 $currenttime 和 $settime 变量来设置 currenttime 和 targettime
$currenttime = date('Y-m-d H:i:s');
$settime = "2012-o5-03 02:10:00";
$diff1 = abs(strtotime($currenttime) - strtotime($settime));
在 $diff1 的基础上,我们开始倒计时并且倒计时工作正常。
现在我想在 $settime 和 $currenttime 相等时显示一条消息,我已经使用了这个代码
if(strtotime($currenttime) == strtotime($settime))
{
echo "Your time begin just now";
}
但是在倒计时归零后它应该显示消息但它没有显示,如果有人有任何解决方案请帮助我。