我正在使用一个定义了近 20 个常量的类,因为我想要一个数组中的所有这些常量值,我只想知道
是否有任何方法可以创建一个类的所有常量的数组?
我尝试使用紧凑但它不适用于常量。
class Alpha
{
const ONE = 'fixone';
const TWO = 'fix_two';
const THREE = 3
public function __construct()
{
protected $arr_constant = compact(ONE,TWO,THREE); // gives FATAL Error
// is there any method which collect all consant and create an array?
protected $arr_contact = get_all_constant(__CLASS__);
var_dump($arr_constant);
}
}