approot.inc.php 165 B

1234567891011
  1. <?php
  2. define('APPROOT', dirname(__FILE__).'/');
  3. if (function_exists('microtime'))
  4. {
  5. $fItopStarted = microtime(true);
  6. }
  7. else
  8. {
  9. $fItopStarted = 1000 * time();
  10. }
  11. ?>