Sorting the capital array

the following demonstrates the output from the print_r sttm:
Array
(
    [CA] => Sacramento
    [TX] => Austin
    [OR] => Salem
)

the capitals array after the asort command:
Array
(
    [TX] => Austin
    [CA] => Sacramento
    [OR] => Salem
)