我在类中使用常量创建了数组,并通过键将值分配给该数组, 值对,因此我想为键创建const,该键将在数组外部定义,例如
const for_a_value= foo::arrayOfvalues[0].key
所以将来如果我想更改键名,只需要在一个地方更改,就可以创建一个
<?php
class foo {
const arrayOfvalues = [
'a' => 'text for a',
'b' => 'text for b',
'c' => 'text for c'
];
const for_avalue= foo::arrayOfvalues[0]; //create constant for a
const for_bvalue= foo::arrayOfvalues[1]; //create constant for b
const for_cvalue= foo::arrayOfvalues[2]; //create constant for c
}
?>