PHP: date “Yesterday”, “Today”

后端 未结 9 1829
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-09 10:20

I have a little function that shows latest activity, it grab timestamp in unix format from the db, and then it echo out with this line:

 date(\"G:i:s j M -Y\         


        
9条回答
  •  悲&欢浪女
    2020-12-09 11:07

    function get_day_name($timestamp) {
    
        $date = date('d/m/Y', $timestamp);
    
        if($date == date('d/m/Y')) {
          $date = 'Today';
        } 
        else if($date == date('d/m/Y',now() - (24 * 60 * 60))) {
          $date = 'Yesterday';
        }
        return $date;
    }
    print date('G:i:s', $last_access).' '.get_day_name($last_access);
    

提交回复
热议问题