您可以为此使用反射。请注意,如果您经常这样做,则可能需要查看缓存结果。
<?phpclass Profile { const LABEL_FIRST_NAME = "First Name"; const LABEL_LAST_NAME = "Last Name"; const LABEL_COMPANY_NAME = "Company";}$refl = new ReflectionClass('Profile');print_r($refl->getConstants());输出:
Array( 'LABEL_FIRST_NAME' => 'First Name', 'LABEL_LAST_NAME' => 'Last Name', 'LABEL_COMPANY_NAME' => 'Company')



