示例#1
0
 /**
  * Reset a debug test for a specific routine
  *
  * @param string $sName Unique identifier of the test. If left blank it will reset all tests.
  * @static 
  */
 public static function reset($sName = null)
 {
     if ($sName === null) {
         self::$_aDebug = array();
         return;
     }
     unset(self::$_aDebug[$sName]);
 }