download this file: event.sclock.php view text/plain: event.sclock.php file encoding: UTF-8 [goback]
<?php
// print utc millisecond, javascript Date().getTime()
$z = date('Z');
list($m,$s) = explode(' ',microtime());
printf('%.0f,%.0f',($m+$s-$z)*1000,$z*1000); // long integer, %ld 32bit ignore
exit;
?>