Code type module improvements:
[openemr.git] / library / core / core.get_microtime.php
blobf1a28e04256cf45751f2d7551f54d795860dccfb
1 <?php
2 /**
3 * Smarty plugin
4 * @package Smarty
5 * @subpackage plugins
6 */
8 /**
9 * Get seconds and microseconds
10 * @return double
12 function smarty_core_get_microtime($params, &$smarty)
14 $mtime = microtime();
15 $mtime = explode(" ", $mtime);
16 $mtime = (double)($mtime[1]) + (double)($mtime[0]);
17 return ($mtime);
21 /* vim: set expandtab: */