When I use
sort($topics)
Call usort() as usort($topics, 'strnatcasecmp').
usort()
usort($topics, 'strnatcasecmp')
strcasecmp would do the job, too, but strnatcasecmp will also sort properly when you have numbers in your string.
strcasecmp
strnatcasecmp