- var_dump: documentation ( source)
- round: documentation ( source)
- number_format: documentation ( source)
<?php
var_dump(1599828571.23561241);
var_dump(DateTimeImmutable::createFromTimestamp(1599828571.23561241)->format('U.u'));
echo number_format(1599828571.23561241, 6, '.', '') . "\n";
echo round(1599828571.23561241, 6);