Example #1
0
 protected static function getInfo()
 {
     if (is_null(self::$apache_modules)) {
         self::$apache_modules = function_exists('apache_get_modules') ? apache_get_modules() : array();
     }
     if (is_null(self::$php_modules)) {
         self::$php_modules = get_loaded_extensions();
     }
 }