mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
49c6f7077d
Closes #835 Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
30 lines
600 B
PHP
30 lines
600 B
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Bernhard Posselt <dev@bernhard-posselt.com>
|
|
* @copyright 2016 Bernhard Posselt
|
|
*/
|
|
|
|
namespace OCA\News\Utility;
|
|
|
|
class Time
|
|
{
|
|
public function getTime(): int
|
|
{
|
|
return time();
|
|
}
|
|
|
|
/**
|
|
* @return string the current unix time in miliseconds
|
|
*/
|
|
public function getMicroTime(): string
|
|
{
|
|
list($millisecs, $secs) = explode(" ", microtime());
|
|
return $secs . substr($millisecs, 2, 6);
|
|
}
|
|
}
|