<?php $all_pages = array( 'home' => 'Home', 'about' => 'About us', 'gallery' => array( 'photo-gallery' => 'Photo Gallery', 'video-gallery' => 'Video Gallery' ), 'contact' => 'Contact us' ); $new = []; array_walk_recursive($all_pages, function($value, $key) use (&$new) { $new[$key] = $value; }); print_r($new);
You have javascript disabled. You will not be able to edit any code.