我想使用一个静态变量的值作为另一个静态变量的值
但是它不起作用。
例如。
class Gateway
{
public static $config = [
'key0' => 0,
'key1' => 1
];
public static $another_config = [
self::$config['key0'],
self::$config['key1'],
];
private function __construct()
{
//something here
}
}
我该怎么做或其他替代方法?