
Alexander Thieme
1,882 PointsWhy is the $sort variable needed?
I do not understand why the $sort array needs to be created. Is that not a duplicate step? I thought one could directly create the $output array with values instead of keys, like this:
if (strtolower($category) == strtolower($item["category"])){ $output[$id] = $item["title"]; } } asort ($output); return array_keys($output);
It works for me like this. Is it bad practice to do?
Alexander Thieme
1,882 PointsAlexander Thieme
1,882 PointsAlright, never mind, should have watched the video till the end before asking :-)
The trimming could not be done in the array.