It's milliseconds since the "UNIX epoch".
Simple conversion if exact milliseconds not important:
$timeMilli = time() . '000';
If exact milliseconds are desired and your system supports it:
list($usec, $sec) = explode(" ", microtime());
$time13 = sprintf('%d%03d', $sec, $usec/1000);