コード例 #1
0
 public static function getSupportedKeys()
 {
     if (null === self::$_supportedKeys) {
         $r = new Zend_Reflection_Class(__CLASS__);
         self::$_supportedKeys = array_values($r->getConstants());
     }
     return self::$_supportedKeys;
 }