show/hide this revision's text 2

Loop though all elements like this:

foreach ($all_items as $key =>$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)
}

Unsetting the 'dataset' element and adding it again will cause the element to be added at the bottom.

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.

show/hide this revision's text 1

Loop though all elements like this:

foreach ($all_items as $key =>$items) {
   $dataset = $items['dataset'];
   unset($all_items[$key]['dataset']);
   $all_items[$key]['dataset'] = $dataset;
}

Unsetting the 'dataset' element and adding it again will cause the element to be added at the bottom.