Iterating over a complex Associative Array in PHP - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T22:02:43Z http://stackoverflow.com/feeds/question/26007 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php 1 Iterating over a complex Associative Array in PHP Thomas Owens 2008-08-25T13:17:17Z 2008-11-17T02:25:51Z <p>Is there an easy way to iterate over an associative array of this structure in PHP:</p> <p>The array <code>$searches</code> 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).</p> <p>Thoughts on doing this in a way that's nice, neat, and understandable?</p> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/26013#26013 1 Answer by Re0sless for Iterating over a complex Associative Array in PHP Re0sless 2008-08-25T13:21:48Z 2008-08-25T13:21:48Z <p>You should be able to use a nested foreach statment</p> <p>from the <a href="http://uk3.php.net/foreach" rel="nofollow">php manual</a></p> <pre><code>/* 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"; } } </code></pre> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/26014#26014 0 Answer by Mark Biek for Iterating over a complex Associative Array in PHP Mark Biek 2008-08-25T13:21:51Z 2008-08-25T13:21:51Z <p>Can you just loop over all of the "part[n]" items and use isset to see if they actually exist or not?</p> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/26018#26018 8 Answer by Konrad Rudolph for Iterating over a complex Associative Array in PHP Konrad Rudolph 2008-08-25T13:24:28Z 2008-08-25T13:24:28Z <p>I'm not sure I understand the problem. Do you know the <a href="http://php.net/foreach" rel="nofollow"><code>foreach</code></a> loop? Why not simply nest it?</p> <pre><code>foreach ($array as $i =&gt; $values) { print "$i {\n"; foreach ($values as $key =&gt; $value) { print " $key =&gt; $value\n"; } print "}\n"; } </code></pre> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/26023#26023 0 Answer by Ross for Iterating over a complex Associative Array in PHP Ross 2008-08-25T13:26:53Z 2008-08-25T13:26:53Z <p>I'm really not sure what you mean here - surely a pair of foreach loops does what you need?</p> <pre><code>foreach($array as $id =&gt; $assoc) { foreach($assoc as $part =&gt; $data) { // code } } </code></pre> <p>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.</p> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/177476#177476 0 Answer by Milan Babuškov for Iterating over a complex Associative Array in PHP Milan Babuškov 2008-10-07T07:22:10Z 2008-10-07T07:22:10Z <p>Looks like a good place for a recursive function, esp. if you'll have more than two levels of depth.</p> <pre><code>function doSomething(&amp;$complex_array) { foreach ($complex_array as $n =&gt; $v) { if (is_array($v)) doSomething($v); else do whatever you want to do with a single node } } </code></pre> http://stackoverflow.com/questions/26007/iterating-over-a-complex-associative-array-in-php/294751#294751 0 Answer by Bill Hogsett for Iterating over a complex Associative Array in PHP Bill Hogsett 2008-11-17T02:25:51Z 2008-11-17T02:25:51Z <p>I need help with what I think is close to the same issue as discussed in this thread. I have tried the approaches here and none solve my problem. But I consider myself a high beginner with php, so it may be I don't understand the issue.</p> <p>I am trying to create a web page showing in descending order the albums I have listened to according to the last.fm database which is scrobbled (great word) up to last.fm from my Sonos system. The scrobble works. I can get the information down using a php lastfmapi class. I can print portions of the array for all items in the array.</p> <p>I am using php and Smarty for the display template. This really may be a Smarty issue.</p> <p>Here are the first two items in the array as shown by print_r:</p> <p>Array ( [0] => Array ( [name] => American Angels: Songs of Hope, Redemption, &amp; Glory [playcount] => 224 [mbid] => [url] => <a href="http://www.last.fm/music/Anonymous+4/American%2BAngels%253A%2BSongs%2Bof%2BHope%252C%2BRedemption%252C%2B%2526%2BGlory" rel="nofollow">http://www.last.fm/music/Anonymous+4/American%2BAngels%253A%2BSongs%2Bof%2BHope%252C%2BRedemption%252C%2B%2526%2BGlory</a> [artist] => Array ( [name] => Anonymous 4 [mbid] => bdbd99ab-3f4b-4028-9306-cd71d8695fbc [url] => <a href="http://www.last.fm/music/Anonymous+4" rel="nofollow">http://www.last.fm/music/Anonymous+4</a> )</p> <pre><code> [images] =&gt; Array ( [small] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif [medium] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif [large] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif ) ) [1] =&gt; Array ( [name] =&gt; Reflections of Spain: Spanish Favorites for Guitar [playcount] =&gt; 83 [mbid] =&gt; [url] =&gt; http://www.last.fm/music/David+Russell/Reflections+of+Spain%3A+Spanish+Favorites+for+Guitar [artist] =&gt; Array ( [name] =&gt; David Russell [mbid] =&gt; 18704857-e7d9-4923-8cb1-fea1aea51111 [url] =&gt; http://www.last.fm/music/David+Russell ) [images] =&gt; Array ( [small] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif [medium] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif [large] =&gt; http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif ) ) </code></pre> <p>Here is what I think is the relevant part of the test.php file and the Smarty template:</p> <p>$i = 0; foreach ($albums as $v1) { $myalbumarray[$i] = (array($v1[images][large],$v1[url],$v1[name], $v1[artist][name], $v1[playcount]));</p> <p>$i++; }</p> <p>This function returns the $myalbumarray and it is assigned to $albums which is then assigned to Smarty with:</p> <p>$smarty->assign('Album', $albums);</p> <h1>Now we show the page!</h1> <p>$smarty->display('Album.tpl');</p> <p>The Smarty template file (.tpl) in relevant part says:</p> <p>{foreach name=outer item=album from=$Album} <hr /> {foreach key=key item=item from=$album} {$item}<br /> {/foreach} {/foreach}</p> <p>which outputs:</p> <p><a href="http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif" rel="nofollow">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</a> <a href="http://www.last.fm/music/Anonymous+4/American%2BAngels%253A%2BSongs%2Bof%2BHope%252C%2BRedemption%252C%2B%2526%2BGlory" rel="nofollow">http://www.last.fm/music/Anonymous+4/American%2BAngels%253A%2BSongs%2Bof%2BHope%252C%2BRedemption%252C%2B%2526%2BGlory</a> American Angels: Songs of Hope, Redemption, &amp; Glory Anonymous 4 224</p> <p><a href="http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif" rel="nofollow">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</a> <a href="http://www.last.fm/music/David+Russell/Reflections+of+Spain%3A+Spanish+Favorites+for+Guitar" rel="nofollow">http://www.last.fm/music/David+Russell/Reflections+of+Spain%3A+Spanish+Favorites+for+Guitar</a> Reflections of Spain: Spanish Favorites for Guitar David Russell 83</p> <p>What I want to do is format in Smarty so that it looks something like the most recently played track at <a href="http://billhogsett.com/musictest.php" rel="nofollow">http://billhogsett.com/musictest.php</a>. I would plan to output in the large center .div where the text is now.</p> <p>Hope this is enough--and not too much--information. This thread was as good as I found trying to solve the issue.</p> <p>Bill Hogsett</p>