* @package helpers */ class helpers_Time { // --- ASSOCIATIONS --- // --- ATTRIBUTES --- // --- OPERATIONS --- /** * Short description of method getMicroTime * * @access public * @author Cédric Alfonsi, * @return helpers_double */ public static function getMicroTime() { $returnValue = (float) 0.0; list($ms, $s) = explode(" ", microtime()); $returnValue = $s + $ms; return (float) $returnValue; } }