次のような日時文字列を指定します。
2012-06-19 03:44:39
それまでのカウントダウン(分単位)に使用したいと思います。
You can post again in <?php echo date('i', strtotime($expires) - strtotime(time())) ?> minutes.
それは私が持っているものですが、それは常に15分と言います。使用するのに適切な関数ではないためtime()
か、わかりません。
ありがとう。
time()
すでにタイムスタンプを返しているので、使用する必要はありませんstrtotime
。
<?php echo date('i', strtotime($expires) - time()) ?>