I have an array like this
Array
(
    [73] => Array
        (
            [id] => 73
            [firstName] => Laura
            [lastName] => ...
            [email] => ...
            [password] => 6d1d3a1dcb9e44eb43605f8ad3c529dd7271749c
            [venueId] => 8
            [departmentId] => 2
            [active] => 1
        )
    [116] => Array
        (
            [id] => 116
            [firstName] => Rachael
            [lastName] => ...
            [email] => ...
            [password] => 33d83a16aa038e775709fc8d499fe608ad2f4afe
            [venueId] => 24
            [departmentId] => 1
            [active] => 1
        )
...etc
I want to sort it so the firstName's are in alphabetical order. Is there a prebuilt PHP function I could use, or would I have to sort it manually?
 
    