Home > Article > Backend Development > How to generate millisecond timestamp in PHP
PHP's time() function generates the seconds of the current time, but in some cases we need to get the current server time and the milliseconds of GMT (Greenwich Mean Time) January 1970, 0:00:00, with The same as the currentTimeMilis() function in Java. I think the following function is the most suitable, so I recorded it.
public function getCurrentMilis() { $mill_time = microtime(); $timeInfo = explode(' ', $mill_time); $milis_time = sprintf('%d%03d',$timeInfo[1],$timeInfo[0] * 1000); return $time; }
The above is the detailed content of How to generate millisecond timestamp in PHP. For more information, please follow other related articles on the PHP Chinese website!