Are you truly using microtime(), or just time()? If using microtime(), are you getting it as a float (with the optional argument) or as a string (in the format "msec sec")?
PS: From your example value, that looks like it's just seconds to me, in which case you could easily output it via [man]date/man:
echo date('Y-m-d H:i:s', $timeInSeconds);