我想要得到的非常像time(),但是在ms中应该是准确的:

2010-11-15 21:21:00:987

这在PHP中可行吗?

最佳答案

function udate($format, $utimestamp = null) {
  if (is_null($utimestamp))
    $utimestamp = microtime(true);

  $timestamp = floor($utimestamp);
  $milliseconds = round(($utimestamp - $timestamp) * 1000000);

  return date(preg_replace('`(?<!\\\\)u`', $milliseconds, $format), $timestamp);
}

echo udate('Y-m-d H:i:s:u'); // 2010-11-15 21:21:00:987

关于php - 如何在PHP中以ms为单位获取当前时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4184769/

10-11 18:04