[ Index ]

PHP Cross Reference of Nucleus CMS v3.51 code documentation

title

Body

[close]

/ -> benchmark.inc (source)

   1  <?php
   2  
   3  if (!function_exists('getmtime'))
   4  {
   5    function getmtime()
   6    {
   7      $a = explode (' ',microtime());
   8      return(double) $a[0] + $a[1];
   9    }
  10  }
  11  
  12  // For benchmarking

  13  global $StartTime;
  14  $StartTime = getmtime();
  15  ?>


Generated: Sun Aug 1 03:56:06 2010
Open Source related documentation for developers.