php 日期时间类型带毫秒
<?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 ?>
无论从事什么行业,只要做好两件事就够了,一个是你的专业、一个是你的人品,专业决定了你的存在,人品决定了你的人脉,剩下的就是坚持,用善良專業和真诚赢取更多的信任。