mirror of
https://github.com/ulfgebhardt/system.git
synced 2025-12-13 09:35:49 +00:00
13 lines
254 B
PHP
13 lines
254 B
PHP
<?php
|
|
|
|
namespace SYSTEM;
|
|
|
|
class time {
|
|
private static $start_time;
|
|
|
|
public static function start(){
|
|
self::$start_time = microtime(true);}
|
|
|
|
public static function getStartTime(){
|
|
return self::$start_time;}
|
|
} |