我是靠谱客的博主 单纯鞋子,这篇文章主要介绍php获取当前时间戳、日期并精确到毫秒(三种方法),现在分享给大家,希望可以做个参考。

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

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

第一种方法:时间戳13位

复制代码
1
2
3
4
5
6
7
8
9
/** * 获取时间戳到毫秒 * @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

看看结果:

企业微信截图_15941001171188.png

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

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

复制代码
1
2
3
4
5
6
7
8
/** * 时间戳 - 精确到毫秒 * @return float */ public static function getMillisecond() { list($t1, $t2) = explode(' ', microtime()); return (float)sprintf('%.0f',(floatval($t1)+floatval($t2))*1000); }
登录后复制

调用:

复制代码
1
2
3
//时间戳 $_t = self::getMillisecond(); dd($_t);
登录后复制

打印结果:

企业微信截图_15941001284592.png

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

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** * 年月日、时分秒 + 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); }
登录后复制

调用:

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/** * @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获取当前时间戳、日期并精确到毫秒(三种方法)内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(247)

评论列表共有 0 条评论

立即
投稿
返回
顶部