PHP通用函數 - 日期生成時間軸


 1 /**
 2  * 時間軸函數, Unix 時間戳
 3  * @param int $time 時間
 4  */
 5 function TranTime($time) {
 6     //$time = strtotime($time);
 7     $nowTime = time (); 
 8     $message = ''; 
 9     //一年前
10     if (idate ( 'Y', $nowTime ) != idate ( 'Y', $time )) {
11         $message = date ( 'Y年m月d日', $time );
12     }
13     else {
14         //同一年
15         $days = idate ( 'z', $nowTime ) - idate ( 'z', $time );
16         switch(true){
17             //一天內
18             case (0 == $days):
19                 $seconds = $nowTime - $time;
20                 //一小時內
21                 if ($seconds < 3600) {
22                     //一分鍾內
23                     if ($seconds < 60) {
24                         if (3 > $seconds) {
25                             $message = '剛剛';
26                         } else {
27                             $message = $seconds . '秒前';
28                         }
29                     }
30                     $message = intval ( $seconds / 60 ) . '分鍾前';
31                 }
32                 $message = idate ( 'H', $nowTime ) - idate ( 'H', $time ) . '小時前';
33                 break;
34                 //昨天
35             case (1 == $days):
36                 $message = '昨天' . date ( 'H:i', $time );
37                 break;
38                 //前天
39             case (2 == $days):
40                 $message = '前天 ' . date ( 'H:i', $time );
41                 break;
42                 //7天內
43             case (7 > $days):
44                 $message = $days . '天前';
45                 break;
46                 //超過7天
47             default:
48                 $message = date ( 'n月j日 H:i', $time );
49                 break;
50         }
51     }
52     return $message;
53 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM