<?php $thearray = [ 123456 => 'John Doe', 654321 => 'Doe John' ]; $result = []; foreach ($thearray as $code => $name) { $result[] = compact(['name', 'code']); } var_export($result);
You have javascript disabled. You will not be able to edit any code.