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

藏色散人
发布: 2020-07-07 13:38:33
转载
13315人浏览过

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);
}
登录后复制

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

企业微信截图_15941001031621.png

立即学习PHP免费学习笔记(深入)”;

看看结果:

企业微信截图_15941001171188.png

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

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

/**
 * 时间戳 - 精确到毫秒
 * @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);
登录后复制

打印结果:

企业微信截图_15941001284592.png

第三种方法: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);
    }
登录后复制

打印结果:

企业微信截图_1594100138657.png

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

PHP速学教程(入门到精通)
PHP速学教程(入门到精通)

PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:csdn网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号