I have the following array as an example and want to sort the list alphabetically by title.
Array
(
[0] => Array
(
[director] => Alfred Hitchcock
[title] => Rear Window
[year] => 1954
)
[1] => Array
(
[director] => Scorsese
[title] => Mean Streets
[year] => 1973
)
[2] => Array
(
[director] => Kubrick
[title] => A Clockwork Orange
[year] => 1971
)
[3] => Array
(
[director] => Stanley
[title] => Full Metal Jacket
[year] => 1987
)
)