3

Possible Duplicate:
Can I get CONST's defined on a PHP class?

Is it possible to fetch all defined constants from class ? I.e. I have following class:

class Cl {
    const AAA = 1;
    const BBB = 2;
}

and I would like to get an array:

array (
    'AAA' => 1,
    'BBB' => 2,
)
Community
  • 1
  • 1
hsz
  • 148,279
  • 62
  • 259
  • 315

0 Answers0