php实现用已经过去多长时间的方式显示时间

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

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

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

<PRe class="brush: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_olderthan('30m',$time)){
print 'The given timestamp: ' . date('l dS \of F Y h:i:s A',$time);
print " - is older than 30 minutes@H
4034@\n";
}
else {
print 'The given timestamp: ' . date('l dS \of F Y h:i:s A',$time);
print " - is NOT older than 30 minutes@H
403_4@\n";
}
// short checks:
if (time_is_olderthan('10s',$time)){ print "Is older than 10 seconds@H403_4@\n"; }
if (time_is_olderthan('200m',$time)){ print "Is older than 200 minutes@H403_4@\n"; }
if (time_is_olderthan('2h',$time)){ print "Is older than 2 hours@H403_4@\n"; }
if (time_is_olderthan('4d',$time)){ print "Is older than 4 days@H403_4@\n"; }
if (time_is_olderthan('1y',$time)){ print "Is older than one year@H403_4@\n"; }

脚本宝典总结

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

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

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