Files
iTop/approot.inc.php
Romain Quetiez 9b50124513 Dev: improved performance measure tooling
SVN:trunk[1144]
2011-03-23 14:09:51 +00:00

12 lines
165 B
PHP

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