Hi all,
I have recently came upon the problem how to reference the object in the array of objects.
I use PHP3 and the problem is this one:
Let's say I have an object parent which contains the array of objects child. When I try to reference parent->child[0]->age I get the "parse error".
The things like a->b->c->d, a[0[->b->c, a->b->c[0] work fine, but when there is array in the middle of the -> operators, it doesn't work.
I would appreciate any help.
Roman