Sources for file smarty/core/core.get_microtime.php in version 3.0



Click on a comment to hide it. Click here to show all comments.
/**
 * 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: */

?>


Website is Copyright © Odynia.org 2000-2005 - Xnyo is released under a BSD license.