//Example data
$current_time = 1318075950;
$unbanned_time = $current_time + strtotime('+1 minute');
if ($unbanned_time > $current_time) {
$th1is = date('Y-m-d H:i:s', $unbanned_time) - date('Y-m-d H:i:s', $current_time);
echo date('Y-m-d H:i:s', $th1is);
我试图输出直到用户被取消禁止的时间......年月,日,小时,分钟和秒......但这给了我一些奇怪的结果......
最佳答案
我建议使用 DateTime
$DateTime = new DateTime();
$unbanned_DateTime = new DateTime();
$unbanned_DateTime = $unbanned_DateTime->modify('+1 minute');
if ( $unbanned_DateTime > $DateTime ) {
$interval = $DateTime->diff($unbanned_DateTime);
$years = $interval->format('%y');
$months = $interval->format('%m');
$days = $interval->format('%d');
$hours = $interval->format('%h');
$minutes = $interval->format('%i');
$seconds = $interval->format('%s');
}
您可以将 ->format() 用于一个输出,而不是将每个值都用作变量。随你心意。
请记住 DateTime->format() 需要在您的 php.ini 中设置时区或使用
date_default_timezone_set('....');
关于php - 还剩多久? php + 日期,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7696715/