<?php $data = [ 'section-name' => ['sec1'], 'item-name' => ['1','2'], 'item-price' => ['1'], 'item-desc' => ['1','2','3'] ]; // take this out. it doesn't belong. $section = array_shift($data); $items = array_map( function($name, $price, $desc) { return ['name'=>$name, 'price'=>$price, 'desc'=>$desc]; }, ...array_values($data) ); var_dump($items);
You have javascript disabled. You will not be able to edit any code.