summaryrefslogtreecommitdiffstats
path: root/lib/Utility/Time.php
blob: 739204f6d1b4b5034798418d5c55b73dae3e3092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?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()
    {
        return time();
    }

    /**
     * @return int the current unix time in miliseconds
     */
    public function getMicroTime()
    {
        list($millisecs, $secs) = explode(" ", microtime());
        return $secs . substr($millisecs, 2, 6);
    }
}