I need to be able to set my object like this:
$obj->foo = 'bar';
then after that is set i need the following to be true
if($obj['foo'] == 'bar'){
//more code here
}
|
|
|
Try extending ArrayObject |
|||||||
|
|
You're mixing objects and arrays. You can create and access an array like so:
and an array like so:
You can define a class and add implements ArrayAccess if you want to access your class as both an array and a class. |
|||
|
|
|
You'll have to implement the
There is a full example on the manual's page I pointed to ;-) |
||||
|
|
Just add
|
||||
|
|
|
ArrayObject implements the ArrayAccess interface (and some more). Using the ARRAY_AS_PROPS flag it provides the functionality you're looking for.
Alternatively you can implement the ArrayAccess interface in one of your own classes:
|
|||
|
|
|
Your object must implement the |
|||
|
|
|
You could also cast the object as an array:
|
|||
|
|