0

可能重复:
使用包含常量名称的简单变量访问类常量

由于静态调用,我想使用反射来发送 const 数组

class ArrowType extends AbstractAttributeType
{
    const NORMAL = 'normal';
    const INV = 'inv';

    static function getPossibleValues()
    {
        $refl = new \ReflectionClass(__CLASS__);
        $class_vars = $refl->getConstants();
        $res = array();
        foreach ($class_vars as $name => $value) {
            $res[] = static::$$name;
        }

        return $res;
    }
}

这给了我

致命错误:访问未声明的静态属性:ArrowType::$NORMAL

我想得到

箭头类型::正常

调用$arrowType->getPossibleValues()时

编辑

为了使我的问题更容易理解,我将向您提供详细信息。我正在使用https://github.com/yethee/BiplaneEnumBundle,我正在努力让我的生活更轻松。目前,我必须生成下面的代码才能满足库的要求。

class ArrowType extends AbstractAttributeType
{
    const NORMAL = 'normal';
    const INV = 'inv';
    const DOT = 'dot';
    const INVDOT = 'invdot';
    const ODOT = 'odot';
    const INVODOT = 'invodot';
    const NONE = 'none';

    static function getPossibleValues()
    {
        return array(
                    static::NORMAL,
                    static::INV,
                    static::DOT,
                    static::INVDOT,
                    static::ODOT,
                    static::INVODOT,
                    static::NONE
                    );
    }

    static function getReadables()
    {
        return array(
                    static::NORMAL => 'normal',
                    static::INV => 'inv',
                    static::DOT => 'dot',
                    static::INVDOT => 'invdot',
                    static::ODOT => 'odot',
                    static::INVODOT => 'invodot',
                    static::NONE => 'none'
                );
    }

}

我现在想要实现的是在两个函数中动态构建数组,以便将这些函数放在父类中,并在我的类中声明 const 部分。我希望这能帮助善良的读者理解我想要什么。

4

1 回答 1

0

等等,等等,等一下。

    $class_vars = $refl->getConstants();
    $res = array();
    foreach ($class_vars as $name => $value) {
        ...

已经拥有了价值。它就在那里。你甚至不需要foreach。只是return $refl->getConstants()

于 2012-12-13T07:22:27.137 回答