Hi guys I'm using microtime() function of php to tell how long certain snippets of code take to run I do this by taking the time before and after the snippet and subtracting them using microtime function.

I got the following results though for the different snippets:

1 -  0.022976

2 -  0.003656

3 - -0.196361

4-   0.006563

5-   7.2E-5

6-   0.847695

7-   0.005092

8-   7.6E-5

9-   0.08024

The first numbers represent the snippt and the following the time taken... I've forgotten whatever I learnt back in College on numerical methods :( - how big is 7.2E-5 microseconds?

link|improve this question

73% accept rate
4  
It's fast. But not as fast as that negative time you got. – keithjgrant Mar 31 '10 at 16:06
What negative time? I mean which is the slowest to the highest - from the values given above which ones are troublesome? – Ali Mar 31 '10 at 16:07
Well, according to your results, #5 is the fastest, followed closely by #8. But that's after excluding #3, which apparently finished before it started. – keithjgrant Mar 31 '10 at 16:10
1  
microtime() returns the microseconds part using 'seconds' as the unit rather than 'microseconds'. This is slightly misleading. Your actual question should be how big is 7.2E-5 seconds. – thetaiko Mar 31 '10 at 16:16
1  
To avoid this kind of problem, when I'm benchmarking something this fast, I do it in a large loop that takes about a second or less total. – ryeguy Mar 31 '10 at 16:21
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted

Paste 7.2E-5 microseconds into http://www.wolframalpha.com and it will give you a bunch of conversions.

link|improve this answer
feedback

7.2E-5 = 7.2 x 10^-5 = 7.2 x 0.00001 = 0.000072

So 7.2E-5 microseconds = 0.000072 microseconds

link|improve this answer
feedback

Scientific Notation

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.