码迷,mamicode.com
首页 > Web开发 > 详细

php 日期时间类型带毫秒

时间:2018-04-16 14:42:56      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:时间戳   round   datetime   date   efault   code   amp   %s   日期时间   

<?php
        date_default_timezone_set(‘PRC‘);
        $mtimestamp = sprintf("%.3f", microtime(true)); // 带毫秒的时间戳

        $timestamp = floor($mtimestamp); // 时间戳
        $milliseconds = round(($mtimestamp - $timestamp) * 1000); // 毫秒

        $datetime = date("Y-m-d H:i:s", $timestamp) . ‘.‘ . $milliseconds;
        echo sprintf("%s => %s", $mtimestamp, $datetime);//1523856374.820 => 2018-04-16 13:26:14.820

?>

 

php 日期时间类型带毫秒

标签:时间戳   round   datetime   date   efault   code   amp   %s   日期时间   

原文地址:https://www.cnblogs.com/phpper/p/8855426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!