* @copyright Bernhard Posselt 2016 */ namespace OCA\News\Utility; class Time { public function getTime() { return time(); } /** * @return int the current unix time in miliseconds */ public function getMicroTime() { list($millisecs, $secs) = explode(" ", microtime()); return $secs . substr($millisecs, 2, 6); } }