<?php $rows = [ [ 'FirstName' => 'Pim', 'Address' => 'Finland', 'LastName' => 'Svensson', 'ID' => 3 ], [ 'FirstName' => 'Emil', 'Address' => 'Sweden', 'LastName' => 'Malm', 'ID' => 5 ] ]; $order = ['ID', 'FirstName', 'LastName', 'Address']; var_export( array_map( function ($row) use ($order) { static $keys = array_flip($order); return array_replace($keys, $row); }, $rows ) );
You have javascript disabled. You will not be able to edit any code.