php – 如何计算unix时间戳之间的时差?

前端之家收集整理的这篇文章主要介绍了php – 如何计算unix时间戳之间的时差?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用time()在 PHP中创建时间戳;

我有$current_time和$purchase_time.如何确保purchase_time小于当前时间的24小时?

由于UNIX时间戳只是秒数,所以只需使用差异:
$purchasedToday = $current_time - $purchase_time < 24 * 60 * 60;
if ($purchasedToday) {
  echo 'You just bought the item';
} else {
  echo 'You bought the item some time ago';
}
原文链接:https://www.f2er.com/php/133777.html

猜你在找的PHP相关文章