XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
core.get_microtime.php
Go to the documentation of this file.
1 <?php
12 function smarty_core_get_microtime($params, &$smarty)
13 {
14  $mtime = microtime();
15  $mtime = explode(" ", $mtime);
16  $mtime = (double)($mtime[1]) + (double)($mtime[0]);
17  return ($mtime);
18 }
19 
20 
21 /* vim: set expandtab: */
22 
23 ?>