multidimensional mixed associative/numeric array shifting - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:51:45Z http://stackoverflow.com/feeds/question/878692 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/878692/multidimensional-mixed-associative-numeric-array-shifting 1 multidimensional mixed associative/numeric array shifting ocergynohtna 2009-05-18T16:54:01Z 2009-05-18T17:04:36Z <p>hi everyone,</p> <p>i have an issue i need to fix sooner than later. if i had the time to rewrite the entire script i would, but such is the life of a programmer, right? anywho, i've taken over a project and i have a multidimensional mixed associative/numeric array like so:</p> <pre><code>Array ( [item1] =&gt; Array ( [dataset] =&gt; Array() [3] =&gt; Array() [7] =&gt; Array() ) [item2] =&gt; Array ( [dataset] =&gt; Array() [4] =&gt; Array() [19] =&gt; Array() [2] =&gt; Array() ) ) </code></pre> <p>what i need to do is shift the <strong>dataset</strong> index in each of the <strong>itemX</strong> indexes to be the last index to result this:</p> <pre><code>Array ( [item1] =&gt; Array ( [3] =&gt; Array() [7] =&gt; Array() [dataset] =&gt; Array() ) [item2] =&gt; Array ( [4] =&gt; Array() [19] =&gt; Array() [2] =&gt; Array() [dataset] =&gt; Array() ) ) </code></pre> <p>a few things that may help make this happen is that i <strong><em>know</em></strong> that the <strong>dataset</strong> index will always be the first index in the <strong>itemX</strong> index and the key will always be 'dataset' and the others will all always be numeric indexes. is there anyway to do this in php? the fact that it's a mixed array is throwing me. i can't have the numeric indexes getting reset and starting at 0. it doesn't matter if they're order is shifted, only that they all come before the 'dataset' index. maybe it's just one of those days.... :\ any suggestions or comments are greatly appreciated.</p> http://stackoverflow.com/questions/878692/multidimensional-mixed-associative-numeric-array-shifting/878714#878714 1 Answer by NebyGemini for multidimensional mixed associative/numeric array shifting NebyGemini 2009-05-18T16:58:49Z 2009-05-18T17:04:36Z <p>Loop though all elements like this:</p> <pre><code>foreach ($all_items as $key =&gt;$items) { $dataset = $items['dataset']; unset($all_items[$key]['dataset']); // Removing it (from the top) $all_items[$key]['dataset'] = $dataset; // Adding it again (at the bottom) } </code></pre> <p>Unsetting the 'dataset' element and adding it again will cause the element to be added at the bottom.</p> <p>It's important that you modify the original array directly, not the $items from the foreach, because those changes will not affect the original array. </p>