alex_coningham
New Member
I use this code to check performance of the script.\[code\]$start_time = microtime(1);// execution some code$cpu_time = microtime(1) - $start_time;\[/code\]the output of echo $cpu_time is something like 3.0994415283203E-6how to display this to real value like 0.000000003099 on the screen ? Is it 0 seconds and very quick execution, right?