php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发

php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发,第1张

C语言中的每条可执行语句都将转换成什么_后端开发

C语言中的每条可执行语句都将转换成二进制的机器指令。


C语言中的非执行语句不会被编译,不会生成二进制的机器指令。


C语言不仅可以发挥出高级编程语言的功能,还具有汇编语言的特点。


php 获取当前时间戳、日期并精确到毫秒

首先,我们封装一个获取时间戳的方法:

第一种方法:时间戳13位

/**
 * 获取时间戳到毫秒
 * @return bool|string
 */
public static function getMillisecond(){
    list($msec, $sec) = explode(' ', microtime());
    $msectime =  (float)sprintf('%.0f', (floatval($msec) + floatval($sec)) * 1000);
    return $msectimes = substr($msectime,0,13);
}

其次,调用这个方法,并打印结果:

php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发,第2张

看看结果:

php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发,第3张

成功获取到了,时间戳且精确到了毫秒!---- 13位,自己数数。


c语言如何统计字符串中每个字符出现的次数?_后端开发

c语言统计字符串中每个字符出现的次数的方法:首先下载安装winTC并打开;然后快捷键【ctrl+N】新建文件,并输入代码;最后保存文件,并输入要统计的字符串后按enter键即可。


第二种方法:时间戳浮点型

/**
 * 时间戳 - 精确到毫秒
 * @return float
 */
public static function getMillisecond() {
    list($t1, $t2) = explode(' ', microtime());
    return (float)sprintf('%.0f',(floatval($t1)+floatval($t2))*1000);
}

调用:

//时间戳
$_t  = self::getMillisecond();
dd($_t);

打印结果:

php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发,第4张

第三种方法:14位年月日时分秒+3位毫秒数

/**
 * 年月日、时分秒 + 3位毫秒数
 * @param string $format
 * @param null $utimestamp
 * @return false|string
 */
public static function ts_time($format = 'u', $utimestamp = null) {
    if (is_null($utimestamp)){
        $utimestamp = microtime(true);
    }
 
    $timestamp = floor($utimestamp);
    $milliseconds = round(($utimestamp - $timestamp) * 1000);
 
    return date(preg_replace('`(?<!\\)u`', $milliseconds, $format), $timestamp);
}

调用:

/**
     * @param array       $reqData 接口传递的参数
     * @param PayMerchant $payConf object PayMerchant类型的对象
     * @return array
     */
    public static function getAllInfo($reqData, PayMerchant $payConf)
    {
        /**
         * 参数赋值,方法间传递数组
         */
        $order     = $reqData['order'];
        $amount    = $reqData['amount'];
        $bank      = $reqData['bank'];
        $ServerUrl = $reqData['ServerUrl']; // 异步通知地址
        $returnUrl = $reqData['returnUrl']; // 同步通知地址
        //TODO: do something
        $data = array(
            'mchntCode'         => $payConf['business_num'],
            'channelCode'       => $bank,
            'mchntOrderNo'      => $order,
            'orderAmount'       => $amount * 100,
            'clientIp'          => request()->ip(),
            'subject'           => 'goodsName',
            'body'              => 'goodsName',
            'notifyUrl'         => $ServerUrl,
            'pageUrl'           => $returnUrl,
            'orderTime'         => date('YmdHis'),
            'description'       => $order,
            'orderExpireTime'   => date('YmdHis',time()+300),
            'ts'                => self::ts_time('YmdHisu'),
        );
        dd($data);
    }

打印结果:

php获取当前时间戳、日期并精确到毫秒(三种方法)_后端开发,第5张

以上就是php获取当前时间戳、日期并精确到毫秒(三种方法)的详细内容,更多请关注ki4网其它相关文章!

c++如何获取系统时间?_后端开发

c++获取系统时间的方法:1、使用系统函数,并且可以修改系统时间;2、获取系统时间,代码为【time_t now_time=time(NULL)】;3、使用windows API ,精确到毫秒级。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://www.outofmemory.cn/zaji/561773.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2020-07-07
下一篇 2020-07-07

发表评论

登录后才能评论

评论列表(0条)

保存