private static function detectOS()
 {
     if (self::$OS == null) {
         if (stristr(PHP_OS, 'WIN')) {
             self::$OS = self::OS_WIN;
         } else {
             self::$OS = self::OS_UNIX;
         }
     }
     return self::$OS;
 }