mirror of https://github.com/avecms/AVE.cms.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
360 B
23 lines
360 B
<?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: */ |
|
|
|
?>
|
|
|