Cómo restar microtime y mostrar la fecha con milisegundos en php?Cómo restar microtime y mostrar la fecha con milisegundos en php?
Por ejemplo: he puesto fecha y hora
$endtime = 2012-02-21 10:29:59;
entonces tengo fecha actual o fecha de inicio con el convertido de microtime
$starttime = 2012-02-21 10:27:59.452;
function getTimestamp()
{
$microtime = floatval(substr((string)microtime(), 1, 8));
$rounded = round($microtime, 3);
return date("Y-m-d H:i:s") . substr((string)$rounded, 1, strlen($rounded));
}
echo getTimestamp(); //sample output 2012-02-21 10:27:59.452
Ahora quiero restar final: $ finaldate = $ endtime - $ starttime;
Quiero que mi salida sea así: 00: 00: 02,452