龙岩易富通网络科技有限公司

龙岩小程序开发,龙岩分销系统

php几分钟前,几小时前,几天前时间显示函数(1)

2015.09.10 | 745阅读 | 0条评论 | php

[php] /** * Smarty plugin * @package Smarty * @subpackage plugins * * Smarty plugin * Example: {$time|time_format} */ function smarty_modifier_time_format ($string) { $now = time (); $return_str = ''; $poss_time = ($now - $string)/60; if ($poss_time < 60) { $return_str = ceil($poss_time)."分钟前"; } elseif ($poss_time <= 60*24) { $return_str = ceil($poss_time/60)."小时前"; } elseif ($poss_time <= 7*60*24) { $return_str = ceil($poss_time/(60*24))."天前"; } else { $return_str = "更早"; } return $return_str; } [/php] /* vim: set expandtab: */ 使用方法 <%$time|time_format%>

赞 (

发表评论