-1

给定这样的日期时间字符串:

2012-06-19 03:44:39

我想用它来提供倒计时(以分钟为单位),直到那个时间。

You can post again in <?php echo date('i', strtotime($expires) - strtotime(time())) ?> minutes.

这就是我所拥有的,但它总是说 15 分钟。可能是因为time()不是正确使用的功能,但我不确定。

谢谢。

4

1 回答 1

2

time()已经返回一个时间戳,所以你不必使用strtotime它:

<?php echo date('i', strtotime($expires) - time()) ?>
于 2012-06-19T01:23:34.480 回答