/framework/vendor/smarty2/lib/internals/core.get_microtime.php
PHP | 23 lines | 9 code | 4 blank | 10 comment | 0 complexity | 72eb40e8367f77f0bd251e15a5bd4f5f MD5 | raw file
Possible License(s): BSD-3-Clause, LGPL-2.1
- <?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: */
- ?>