$theArray is an array of Objects
why won't this work? -- > current($theArray)->someMethod()
or this? --> $theArray[0]->someMethod()
I don't understand how you can change objects when they're in an array. This works:
$someObject = $theArray[0];
$someObject->someMethod();
but $someObject is just a copy and doesn't change anything in the array. Maybe I'm thinking of this wrong????