久久调教,免费看黄色影片,www五月,国产精品免费一区二区区,亚洲欧美日韩综合一区,亚洲欧美日韩精品在线,2021免费日韩视频网

龍巖易富通網(wǎng)絡科技有限公司

龍巖小程序開發(fā),龍巖分銷系統(tǒng)

php幾分鐘前,幾小時前,幾天前時間顯示函數(shù)(1)

2015.09.10 | 494閱讀 | 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%>

贊 (

發(fā)表評論