手机
当前位置:查字典教程网 >编程开发 >php教程 >php实现求相对时间函数
php实现求相对时间函数
摘要:本文实例讲述了php实现求相对时间函数。分享给大家供大家参考。具体实现方法如下:$now)$relative='inthefuture';e...

本文实例讲述了php实现求相对时间函数。分享给大家供大家参考。具体实现方法如下:

<?php function relativeTime($time = false, $limit = 86400, $format = 'g:i A M jS') { if (empty($time) || (!is_string($time) & amp; & amp; !is_numeric($time))) $time = time(); elseif (is_string($time)) $time = strtotime($time); $now = time(); $relative = ''; if ($time === $now) $relative = 'now'; elseif ($time > $now) $relative = 'in the future'; else { $diff = $now - $time; if ($diff >= $limit) $relative = date($format, $time); elseif ($diff < 60) { $relative = 'less than one minute ago'; } elseif (($minutes = ceil($diff / 60)) < 60) { $relative = $minutes . ' minute' . (((int)$minutes === 1) ? '' : 's') . ' ago'; } else { $hours = ceil($diff / 3600); $relative = 'about ' . $hours . ' hour' . (((int)$hours === 1) ? '' : 's') . ' ago'; } } return $relative; }

希望本文所述对大家的php程序设计有所帮助。

【php实现求相对时间函数】相关文章:

php调整服务器时间的方法

php返回相对时间(如:20分钟前,3天前)的方法

php+ajax实现无刷新动态加载数据技术

php实现的简单日志写入函数

php实现ping

php实现CSV文件导入和导出方法

php实现简单的语法高亮函数实例分析

php实现修改新闻时删除图片的方法

PHP实现的增强性mhash函数

PHP时间和日期函数详解

精品推荐
分类导航