Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can somebody explain clearly the fundamental differences between ArrayIterator, ArrayObject and Array in PHP in terms of functionality and operation? Thanks!

share|improve this question
1  
Have you read ArrayIterator, ArrayObject and Array? That's probably all the information you'll need. – vascowhite May 8 '12 at 16:48

1 Answer

May be you will find your answer here:

This iterator allows to unset and modify values and keys while iterating over Arrays and Objects.

When you want to iterate over the same array multiple times you need to instantiate ArrayObject and let it create ArrayIterator instances that refer to it either by using foreach or by calling its getIterator() method manually.

Also read:

share|improve this answer
2  
Sorry I didn't make my question clear - Yes I've read the PHP documentation on the three but it seems to me like they do pretty much the same thing. I was wondering if somebody could explain what the actual difference was between them and why you'd choose one over the other. If this isn't a suitable question to post here then I apologise and please feel free to delete this post! – jkhamler May 9 '12 at 5:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.