ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# humandate() ## humandate() ``` <pre class="calibre11">``` humandate($timestamp, $lan = array()) ``` ``` #### 【功能】 友好的显示日期。 #### 【参数】 ``` <pre class="calibre11">``` $timestamp:UNIX 时间戳 $lan:语言包 ``` ``` 语言包默认值:: ``` <pre class="calibre11">``` $lan = array( 'month_ago'=>'月前', 'day_ago'=>'天前', 'hour_ago'=>'月前', 'minute_ago'=>'月前', 'second_ago'=>'月前', ); ``` ``` #### 【用例】 ``` <pre class="calibre11">``` <?php include './xiunophp/xiunophp.php'; $n = time() - 86401; echo humandate($n); // 结果: 1 天前 ?> ``` ```