I can't find any info on enumerations in the PHP manual, so I assume there
is no built in way to create them. Can anyone tell me the best way to build
a simple enumeration, such as:
Enum AllItems as Integer
'First Item' = 1;
'Second Item' = 2;
:
End Enum
is no built in way to create them. Can anyone tell me the best way to build
a simple enumeration, such as:
Enum AllItems as Integer
'First Item' = 1;
'Second Item' = 2;
:
End Enum
Comment