In Actionscript, the Unix timestamp in milliseconds is obtainable like this:
public static function getTimeStamp():uint { var now:Date =
Something like this:
$mili_sec_time = $_SERVER['REQUEST_TIME_FLOAT'] * 1000;
Gives float type representing miliseconds from UNIX epoch to starts of the request.