Index: releases/5.0.0/index.php =================================================================== diff -u -N --- releases/5.0.0/index.php (revision 0) +++ releases/5.0.0/index.php (revision 12099) @@ -0,0 +1,30 @@ +Init(); + $application->Run(); + $application->Done(); + + $end = getmicrotime(); + + function getmicrotime() + { + list($usec, $sec) = explode(" ", microtime()); + return ((float)$usec + (float)$sec); + } \ No newline at end of file