-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 に答える