I have this class:
class ResultSet
implements ArrayAccess, Countable, Iterator {
/// Rest of implementation ...
}
I'm running into a problem using usort() and passing my object as the first parameter. usort() expects an array instead of an object, but given my implementation of the ArrayAccess interface I don't know what else it could be needing.
The exact error returned by php is:
Warning: usort() expects parameter 1 to be array, object given.
ArrayObject's suffer from this, I'd say it's either a bug or at least an unwanted legacy problem... – Wrikken Jun 9 '11 at 18:24