本文主要是介绍php获取系统完整时间精确到毫秒,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/* 获取完整时间 */
function getTime($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);
}
/* 获取时间精确到毫秒 */
//getTime('Y-m-d H:i:s u');
这篇关于php获取系统完整时间精确到毫秒的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!