mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 23:44:11 +01:00
12 lines
165 B
PHP
12 lines
165 B
PHP
<?php
|
|
define('APPROOT', dirname(__FILE__).'/');
|
|
if (function_exists('microtime'))
|
|
{
|
|
$fItopStarted = microtime(true);
|
|
}
|
|
else
|
|
{
|
|
$fItopStarted = 1000 * time();
|
|
}
|
|
?>
|