如何解决致命错误:常量表达式包含无效操作

时间:2020-09-08 17:51:33

标签: php oop static-methods

我想使用一个静态变量的值作为另一个静态变量的值

但是它不起作用。

例如。

class Gateway
{

    public static $config = [
        'key0' => 0,
        'key1' => 1
    ];

    public static $another_config = [
        self::$config['key0'],
        self::$config['key1'],
    ];

    private function __construct()
    {
        //something here
    }

}

我该怎么做或其他替代方法?

0 个答案:

没有答案