Bug #21308 ยป 12277_01.diff
t3lib/class.t3lib_timetracknull.php (working copy) | ||
---|---|---|
* @param float $microtime: The microtime value - if not set the current time is used
|
||
* @return integer The microtime value as milliseconds value
|
||
*/
|
||
public function getMilliseconds($microtime = NULL) {}
|
||
public function getMilliseconds($microtime = NULL) {
|
||
if (!isset($microtime)) {
|
||
$microtime = microtime(true);
|
||
}
|
||
return round($microtime * 1000);
|
||
}
|
||
}
|
||
// XCLASSing is not possible for this class
|
||
?>
|
||
?>
|