生成年月日时分秒毫秒单号

  //生成记录编号 14位年月日时分秒+3位毫秒数

    public function createOrderName($format = 'YmdHisu') {

        $utimestamp  = microtime(true);

        $timestamp    = floor($utimestamp);

        $milliseconds = round(($utimestamp - $timestamp) * 1000);

        return date(preg_replace('`(?

    }

你可能感兴趣的:(生成年月日时分秒毫秒单号)