core.get_microtime.php in Quiz 6.5
Same filename and directory in other branches
File
includes/moodle/lib/smarty/core/core.get_microtime.phpView source
<?php
/**
* Smarty plugin
* @package Smarty
* @subpackage plugins
*/
/**
* Get seconds and microseconds
* @return double
*/
function smarty_core_get_microtime($params, &$smarty) {
$mtime = microtime();
$mtime = explode(" ", $mtime);
$mtime = (double) $mtime[1] + (double) $mtime[0];
return $mtime;
}
/* vim: set expandtab: */
Functions
Name | Description |
---|---|
smarty_core_get_microtime | Get seconds and microseconds |