Ejemplo n.º 1
0
 private function __construct()
 {
     // Start timer
     self::$start_time = microtime(true);
     // Record memory usage
     self::$start_mu = memory_get_usage();
     // Report instantiation
     $success = self::Track('Starting Log');
     // Register the script shutdown function
     register_shutdown_function(array($this, 'Shutdown'));
     $success->Affirm();
 }