/framework/vendor/smarty2/lib/internals/core.get_microtime.php
http://zoop.googlecode.com/ · PHP · 23 lines · 9 code · 4 blank · 10 comment · 0 complexity · 72eb40e8367f77f0bd251e15a5bd4f5f MD5 · raw file
- <?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: */
- ?>