Jump to content

Couldn't measure time for file include


Dareros

Recommended Posts

Hi; why does this snippet of code doesn't measure the time required to include the file in milliseconds. The problem is unknown for me because the variable $diff always have the wrong value. Here is the code :

<?php
$start = microtime(true);
include('/path/to/my/script.php');
$end = microtime(true);

$diff = ($end-$start)*1000;
echo 'The script took ' . $diff . 'ms to proceed.';
?>

The problem is that the variable $diff return a big number instead of a couple of milliseconds, for example it return a value such as 1416110398494 which is illogical why ?

 

Regards

Link to comment
https://forums.phpfreaks.com/topic/292495-couldnt-measure-time-for-file-include/
Share on other sites

... or your $start contains 0 (have you misspelled $start in your code).

 

Given your start and end, it should produce

$start = 1416165131.3015;
$end = 1416165131.4172;
$diff = ($end - $start)*1000;

echo $diff . ' ms';                    // 115.70000648499 ms

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.