<?php // see https://github.com/eyecatchup/SEOstats/pull/42#issuecomment-29747931 if (!ini_get('date.timezone') && function_exists('date_default_timezone_set')) { date_default_timezone_set('UTC'); } // borrowed/adapted from https://www.php.net/manual/en/function.microtime.php#example-2402 function getMillitime() { list($usec, $sec) = explode(' ', microtime()); $microtime = ((float)$usec + (float)$sec); $millitime = $microtime * 100; return $millitime; } echo getMillitime();
You have javascript disabled. You will not be able to edit any code.