up vote 4 down vote favorite
4
share [g+] share [fb]

Is there an easy way to iterate over an associative array of this structure in PHP:

The array $searches has a numbered index, with between 4 and 5 associative parts. So I not only need to iterate over $searches[0] through $searches[n], but also $searches[0]["part0"] through $searches[n]["partn"]. The hard part is that different indexes have different numbers of parts (some might be missing one or two).

Thoughts on doing this in a way that's nice, neat, and understandable?

link|improve this question

feedback

6 Answers

up vote 15 down vote accepted

I'm not sure I understand the problem. Do you know the foreach loop? Why not simply nest it?

foreach ($array as $i => $values) {
    print "$i {\n";
    foreach ($values as $key => $value) {
        print "    $key => $value\n";
    }
    print "}\n";
}
link|improve this answer
is $i and $values a copy temp variable from the associative array or do they refer to the actual array reference? – MMAMail.com May 18 '10 at 9:52
1  
@MMAmail.com: This code doesn’t use references, it uses copies. If you really want to use references (but you usually don’t!) you need to prefix the variable names with ampersand, i.e. &$i and &$values in their declaration and you should unset the variables after the loop. – Konrad Rudolph May 18 '10 at 10:17
feedback

I know it's question necromancy, but iterating over Multidimensional arrays is easy with Spl Iterators

$iterator = new RecursiveIteratorIterator(new RecursiveArrayIterator($array));

foreach($iterator as $key=>$value) {
    echo $key.' -- '.$value.'<br />';
}

See

link|improve this answer
Whats happens if one of the array elements is an iteratable object? – Petah Oct 21 '11 at 2:52
@Petah it will be iterated. See codepad.org/sd8eBvcu – Gordon Oct 21 '11 at 7:39
do you know how to exclude it from being iterated?, so only arrays are iterated? – Petah Oct 25 '11 at 0:29
1  
@Petah wrap the iteratoror into a FilterIterator that checks for is_object in the accept() method. – Gordon Oct 25 '11 at 7:41
feedback

You should be able to use a nested foreach statment

from the php manual

/* foreach example 4: multi-dimensional arrays */
$a = array();
$a[0][0] = "a";
$a[0][1] = "b";
$a[1][0] = "y";
$a[1][1] = "z";

foreach ($a as $v1) {
    foreach ($v1 as $v2) {
        echo "$v2\n";
    }
}
link|improve this answer
feedback

Looks like a good place for a recursive function, esp. if you'll have more than two levels of depth.

function doSomething(&$complex_array)
{
    foreach ($complex_array as $n => $v)
    {
        if (is_array($v))
            doSomething($v);
        else
            do whatever you want to do with a single node
    }
}
link|improve this answer
feedback

Can you just loop over all of the "part[n]" items and use isset to see if they actually exist or not?

link|improve this answer
feedback

I'm really not sure what you mean here - surely a pair of foreach loops does what you need?

foreach($array as $id => $assoc)
{
    foreach($assoc as $part => $data)
    {
	    // code
    }
}

Or do you need something recursive? I'd be able to help more with example data and a context in how you want the data returned.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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