Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Build a Basic PHP Website (2018) Listing and Sorting Inventory Items Sorting Array Items

Alexander Thieme
Alexander Thieme
1,882 Points

Why 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?

1 Answer

Alexander Thieme
Alexander Thieme
1,882 Points

Alright, never mind, should have watched the video till the end before asking :-)

The trimming could not be done in the array.