zoukankan      html  css  js  c++  java
  • PHP时间轴函数

    PHP时间轴函数可以更好的去进行用户体验。让用户动态的知道最近是什么时候,而不是死板的datatime去转换成固定的时间。

    后续版本会考虑添加这个功能,代码先贴出来。

    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.'小时前 '.$htime;      }      
    elseif ($time < 60 * 60 * 24 * 3) {          
    $d = floor($time/(60*60*24));          
    if($d==1)             
    $str = '昨天 '.$rtime;          
    else             
    $str = '前天 '.$rtime;      }      
    else {          
    $str = $rtime;      }      
    return $str;  }
    
    只需要在转换时间函数的时候替换成这个函数,就搞定了。
  • 相关阅读:
    Senventh Week(补充完整)
    Sixth Week(补充完整)
    Fifth Week(补充完整)
    Fourth Week (补充完整)
    九大内置对象
    matlab 简单绘图
    matlab ./
    困惑
    【转】matlab中inf
    matlab x~=0
  • 原文地址:https://www.cnblogs.com/xiaofei723/p/14924042.html
Copyright © 2011-2022 走看看