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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.