array_walk($result, create_function('&$a', '$score = $this->getScore($a, $a->score); $a->score = $score;'));
Produces this error:
Fatal error: Call to a member function on a non-object
I assume this refers to my using "$this->getScore()", however, I have to use that method to calculate the score to go back into the object array at the "score" property.
Is there an alternate way of doing this?
Thanx
Phil