First of all, date() is used to format a timestamp - it's just the default behaviour that it'll use the current timestamp, when date() is called without second parameter. The timestamp used will be the timestamp the moment the function is called - calling date('Y-m-d') is the same as calling date('Y-m-d', time()) where time() will give you the
[...] the current time measured in the number of seconds since the Unix Epoch (January 1 1970 00:00:00 GMT).
You only get the same timestamp every time you call date() because your script is too fast and runs within one second resulting in no timestamp-change.
To address your second problem of formatting the microtime() return value, you can do the following (untested)
function formatTime($microtime, $format, $precision)
format)
{
list($timestamp, $fraction) = explode('.', $microtime);
return date($format, (int)$timestamp) . '.' . $fraction;
}
The value given to $microtime should be a float, which you get when you pass true as a parameter to microtime()
