Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
5answers
646 views

How do I alter array keys and values while using a RecursiveArrayIterator?

I suspect I'm doing something stupid here, but I'm confused by what seems like a simple problem with SPL: How do I modified the contents of an array (the values in this example), using a ...
2
votes
1answer
607 views

ORM Query results: Arrays vs Result handle wrapped in Iterator interface

Okay, here's one for the pro's: For a couple of years now, i've been working on my own PHP ORM/ActiveRecord implementation that i named Pork.dbObject. It's loosly based on the 'make your own site ...
1
vote
5answers
237 views

Are Iterators faster than array[i]? [closed]

Possible Duplicate: Why use iterators instead of array indices? Because for the life of me I can't figure out how they're not redundant. vector<string>::iterator iter1 ...
0
votes
2answers
241 views

Accessing array object variables when implementing RecursiveArrayIterator in RecursiveIteratorIterator

I have a large arrayObject which I'm looping over using the following:- $rit = new RecursiveIteratorIterator(new RecursiveArrayIterator($hierarchy)); foreach($rit as $key=> $val) { } How can I ...