Convert flat, associative array into indexed 2d array with associative rows – PHP
I have an array like this [ 123456 => 'John Doe' 654321 => 'Doe John' ] I want to change the array key (123456 and 654321) into an index (0,1,2,3,....,n) and save it into value, the expected result looks like…