Jump to content

Microtime Issue


jug

Recommended Posts

Hi,

 

Looking through previous posts there is one thread that I found that covers the issue but the solution did not work for me.

 

http://www.phpfreaks.com/forums/index.php/topic,214582.msg980170.html#msg980170

 

What I am trying to do is use microtime to see how long a script takes to execute. Im expecting a figure that is below one, for example 0.034532. But what I am getting is a figure similar to 2.9999999999974E-5.

 

What does this mean? And how can I solve it? The code I am using is below and is very simple and almost identical to one example found in the documentation on php.net.

 


$time_start = microtime(true);

//script here

$time_end = microtime(true);
$time_taken = $time_end - $time_start;
echo ' Time taken: ' . $time_taken;

 

Thanks in advance

 

jug

 

 

Link to comment
https://forums.phpfreaks.com/topic/197145-microtime-issue/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.