is there a typedef keyword in PHP such that I can do something like:
typedef struct {
} aStructure;
or
typedef enum {
aType1,
aType2,
} aType;
feedback
|
|
You'll have to go with arrays or, if you require something that has a custom type, classes and objects. | |||
|
feedback
|
|
PHP has two (count them – 2) datatypes:
You can 'fake' an enum using an inverted hash/array structure:
"Structures" are usually faked by having a hash with named members:
| |||||||
feedback
|
|
I actually created my own kind of enum for PHP and it works just fine for what i need to do. no typedefs but its nice :D Function enum($array, $asBitwise = false)
Usage (EXAMPLE):
| |||||||||
feedback
|
|
Here is a github library for handling type-safe enumerations in php: This library handle classes generation, classes caching and it implements the Type Safe Enumeration design pattern, with several helper methods for dealing with enums, like retrieving an ordinal for enums sorting, or retrieving a binary value, for enums combinations. The generated code use a plain old php template file, which is also configurable, so you can provide your own template. It is full test covered with phpunit. php-enums on github (feel free to fork) Usage: (@see usage.php, or unit tests for more details)
Output:
| |||
|
feedback
|
|
You can do something similar with constants, but it's not the same as a dedicated enum. | |||
|
feedback
|
|
Their is an Extension called SPL_Types, but this extension is nearly at no web hosting available AND its not maintained anymore. So the best would be using classes for structs. and constants for enums. maybe with the help of the plain SPL extension, which is nearly in every php 5.X installation available, you could build some "evil dirty enum hack" | |||
|
feedback
|