I'm looking to create an array or list with elements of a certain type (eg objects the implement a certain interface). I know I can create an object that does the same thing implementing Traversable and Iterator, or override ArrayObject. But maybe there's another way I have missed.
|
|
|||||||
|
|
|
I would write a custom class that extended ArrayObject and threw an exception if you tried to assign a variable that wasn't the correct type, there's really no better way to do it that I can think of. |
||
|
|
|
|
Do you mean something like:
If you don't, them I'm sorry - it's just that your question isn't too clear. |
||||
|
|
|
You could use type hinting:
This example is not perfect, but you'll get the idea. |
||
|
|
|
|
PHP as a lanugage is very flexible in terms of type handling and type conversion. You will probably have to put a manual check in if you want any kind of strong type checking, a simple if statement will do. The array object is designed to be especially flexible (lazy key assignment, automatic increment, string or integer keys, etc.) so you should probably use a custom object of your own. |
||
|
|
|
|
Basically, you are going to want to do a function that checks if the variable you are inserting into the array is an object.
If you want to make sure it has a specific class name, you would do something like this (for PHP5):
or this for previous PHP versions:
You might want to look into array_filter() to do this without building an object. Looking at that page, I've found that you can use array_filter with common functions like is_object. So doing something like this:
Would filter the array to contain only objects. |
|||
|
|
