Can I get CONST’s defined on a PHP class?
I have several CONST’s defined on some classes, and want to get a list of them. For example:
I have several CONST’s defined on some classes, and want to get a list of them. For example:
I would like to be able to do something like this:
Python 3.4 introduces a new module enum
, which adds an enumerated type to the language. The documentation for enum.Enum
provides an example to demonstrate how it can be extended: