Dev: improved performance measure tooling

SVN:trunk[1144]
This commit is contained in:
Romain Quetiez
2011-03-23 14:09:51 +00:00
parent c9b4468f17
commit 9b50124513
4 changed files with 35 additions and 21 deletions

View File

@@ -1,3 +1,11 @@
<?php
define('APPROOT', dirname(__FILE__).'/');
if (function_exists('microtime'))
{
$fItopStarted = microtime(true);
}
else
{
$fItopStarted = 1000 * time();
}
?>