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