Hi,
Is it possible to sort the following array based on 'title' alphabetically? I tried sort() but it doesnt seem to work on multi-dem arrays.
Array
(
[0] => Array
(
[urls] => http://www.url1.com
[title] => Cccc
)
[1] => Array
(
[urls] => http://www.url2.com
[title] => Aaaa
)
[2] => Array
(
[urls] => http://www.url3.com
[title] => Bbbb
)
)
Thanks for taking the time 🙂