123456789101112131415161718192021 |
- <?php
- // +----------------------------------------------------------------------
- // | A3Mall
- // +----------------------------------------------------------------------
- // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: xzncit <158373108@qq.com>
- // +----------------------------------------------------------------------
- namespace mall\utils;
- class Date {
- public static function format($time='',$timestamp="Y-m-d H:i:s",$default="N/A"){
- if(empty($time)) {
- return $default;
- }
- return date($timestamp,$time);
- }
- }
|