Date.php 661 B

123456789101112131415161718192021
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | A3Mall
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2020 http://www.a3-mall.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: xzncit <158373108@qq.com>
  8. // +----------------------------------------------------------------------
  9. namespace mall\utils;
  10. class Date {
  11. public static function format($time='',$timestamp="Y-m-d H:i:s",$default="N/A"){
  12. if(empty($time)) {
  13. return $default;
  14. }
  15. return date($timestamp,$time);
  16. }
  17. }