<?php $source_arr = ["Car" => "Volvo", "City" => "Stockholm", "Country" => "Sweden"]; $new_arr = []; array_push( $new_arr, ...key_exists("Car", $source_arr) ? [$source_arr["Car"]] : [], ...key_exists("State", $source_arr) ? [$source_arr["State"]] : [] ); var_export($new_arr);
You have javascript disabled. You will not be able to edit any code.