0
what is microtime() in php?
can anyone explain this
2 odpowiedzi
+ 1
`time()` (almost) gives you the amount of seconds passed since January 1st, 1970. `microtime()` is the same but also tells you how many microseconds have passed (millionths of a second).
0
thanks