I have an array like the one below
Array
(
    [0] => Array
        (
            [name] => Alex
            [age] => 30
            [place] => Texas                
        )
    [1] => Array
        (
            [name] => Larry
            [age] => 28
            [place] => Memphis
        )
)
How would I change the key names? Like "name" to "firstname", "age" to "years", "place" to "address"?
 
     
     
     
    