summaryrefslogtreecommitdiffstats
path: root/lib/Utility/Time.php
blob: c46dbd524b032712eb037e9e76d85d2699ee1523 (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
<?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 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);
    }

}