💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
##友好格式化显示时间 * @param int $time 时间戳 * @author winter * 2014-7-24 下午3:18:45 ~~~ function sxx_fdate($time = NULL) { $text = ''; $time = $time === NULL || $time > time() ? time() : intval($time); $t = time() - $time; //时间差 (秒) if ($t == 0) $text = '刚刚'; elseif ($t < 60) $text = $t . '秒前'; // 一分钟内 elseif ($t < 60 * 60) $text = floor($t / 60) . '分钟前'; //一小时内 elseif ($t < 60 * 60 * 24) $text = floor($t / (60 * 60)) . '小时前'; // 一天内 elseif ($t < 60 * 60 * 24 * 2) $text = '昨天 ' . date('H:i', $time); //两天内 elseif ($t < 60 * 60 * 24 * 3) $text = '前天 ' . date('H:i', $time); // 三天内 elseif ($t < 60 * 60 * 24 * 30) $text = date('m月d日 H:i', $time); //一个月内 elseif ($t < 60 * 60 * 24 * 365) $text = date('m月d日', $time); //一年内 else $text = date('Y年m月d日', $time); //一年以前 return $text; } ~~~