名站网址导航为大驾家提供DedeCMS站点程序站点教程相关的知识,比如织梦程序安装教程,织梦程序系统故障等教程。1.在 include/extend.func.php页面最下面增加如下相关具体代码如下:
- /*
- * 织 梦 侠
- *文章发布多少时间前
- */
- function tranTime($time) {
- $rtime = date("m-d h:i",$time);
- $htime = date("h:i",$time);
- $time = time() - $time;
- if ($time < 60) {
- $str = '刚刚';
- }
- elseif ($time < 60 * 60) {
- $min = floor($time/60);
- $str = $min.' 分钟前';
- }
- elseif ($time < 60 * 60 * 24) {
- $h = floor($time/(60*60));
- $str = $h.' 小时前 ';
- }
- elseif ($time < 60 * 60 * 24 * 3) {
- $d = floor($time/(60*60*24));
- if($d==1)
- $str = '昨天 ';
- else
- $str = '前天 ';
- }
- else {
- $str = $rtime;
- }
- return $str;
- }
- [field:pubdate function="tranTime(@me)" /]
- {dede:field.pubdate function="tranTime(@me)" /}
关于DedeCMS站点程序站点教程相关的知识,就说到这里了希望能帮助朋友们。织梦程序手机WAP移动端识别跳转相关具体代码如下