<?php $givenArray = [ 'destination' => [ 'London', 'Liverpool', 'Nottingham', 'Oxford', ], 'fee' => [ 10, 15, 20, 25 ], ]; $output = []; foreach ($givenArray['destination'] as $key => $destination) { $fee = $givenArray['fee'][$key]; $output[] = [ 'destination' => $destination, 'fee' => $fee, 'status' => 1, ]; } print_r($output);
You have javascript disabled. You will not be able to edit any code.