给出这样的日期时间字符串:
2012-06-19 03:44:39
我想用它来提供一个倒计时(以分钟为单位),直到那个时间。
You can post again in <?php echo date('i', strtotime($expires) - strtotime(time())) ?> minutes.
这就是我所拥有的,但总是说15分钟。可能是因为time()
不适合使用,但我不确定。
感谢。
答案 0 :(得分:2)
time()
已经返回了一个时间戳,因此您不必使用strtotime
:
<?php echo date('i', strtotime($expires) - time()) ?>