hi all..
is there anyway to use mktime() to make up time down to milliseconds?
to be able to compare times (in the future) that are very close to each other.
to get those times i use microtime() and concatenate the seconds with the milliseconds stripping the 0s (zeros). assuming here that it's impossible to have two different processes that will return the same microtime. ever...
(one way to solve this is to add 6 digit random numbers after the time that mktime comes up with... i guess...)
also - on a different note - is there a better way to create consecutive numbers in php (without using a stored value in a db) than using the unix microtime?!
thanks....