1
0
Fork 0
mirror of https://github.com/Yetangitu/owncloud-apps.git synced 2025-10-02 14:49:17 +02:00

files_reader: v1.0.0, see CHANGELOG and appinfo/info.xml for changes and new features

This commit is contained in:
frankdelange 2017-03-16 01:30:24 +01:00
parent 30f758d419
commit aa85edee22
65 changed files with 13549 additions and 539 deletions

View file

@ -0,0 +1,27 @@
<?php
/**
* @author Frank de Lange
* @copyright 2017 Frank de Lange
*
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OCA\Files_Reader\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);
}
}