PHP   发布时间:2022-04-09  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了php实现用已经过去多长时间的方式显示时间大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了PHP用已经过去多长时间的方式显示间的方法分享给大家供大家参。具体如下:

这里以一种可读性比较好的方式显示已经过去多长时间,比如:距离现在10秒,距离现在1天等等。

PHP;">
function time_is_older_than($t,$check_time){
  $t = strtolower($t);
  $time_type = substr(preg_replace('/[^a-z]/','',$t),1);
  $val = intval(preg_replace('/[^0-9]/',$t));
  $ts = 0;
  // (s)econds,(m)inutes,(d)ays,(y)ears
  if ($time_type == 's'){ $ts = $val; }
  else if ($time_type == 'm'){ $ts = $val * 60; }
  else if ($time_type == 'h'){ $ts = $val * 60 * 60; }
  else if ($time_type == 'd'){ $ts = $val * 60 * 60 * 24; }
  else if ($time_type == 'y'){ $ts = $val * 60 * 60 * 24 * 365; }
  else { die('UnkNown time format given!'); }
  if ($check_time < (time()-$ts)){="" return="" true;="" }="" return="" false;="" }="">

//使用范例:
// timestamp to test:
// (Could be from an database or something elsE)
$time = 1146722922;
// long if check:
if (time_is_older_than('30m',$timE)){
print 'The given timestamp: ' . date('l dS \of F Y h:i:s A',$timE);
print " - is older than 30 minutes
\n";
}
else {
print 'The given timestamp: ' . date('l dS \of F Y h:i:s A',$timE);
print " - is NOT older than 30 minutes
\n";
}
// short checks:
if (time_is_older_than('10s',$timE)){ print "Is older than 10 seconds
\n"; }
if (time_is_older_than('200m',$timE)){ print "Is older than 200 minutes
\n"; }
if (time_is_older_than('2h',$timE)){ print "Is older than 2 hours
\n"; }
if (time_is_older_than('4d',$timE)){ print "Is older than 4 days
\n"; }
if (time_is_older_than('1y',$timE)){ print "Is older than one year
\n"; }

大佬总结

以上是大佬教程为你收集整理的php实现用已经过去多长时间的方式显示时间全部内容,希望文章能够帮你解决php实现用已经过去多长时间的方式显示时间所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。