get_microtime_lib
Proto type
int get_microtime_lib (int start, int end)Description
Arguments
Example
<?php
$time1 = microtime();
blah_blah ();
$time2 = microtime();
$time = get_microtime_lib ($time1, $time2);
# print 0.01 sec
echo "$time sec";
?>See also
Last updated