Related questions
Does PHP have built-in data structures?
I'm looking at the PHP Manual, and I'm not seeing a section on data structures that most languages have, such as lists and sets. Am I just blind or does PHP not have anything like this built in?
Grouping arrays in PHP
I have an array of 200 items. I would like to output the array but group the items with a common value. Similar to SQL's GROUP BY method. This should be relatively easy to do but I also need a count …
Does PHP 5.x have some kind of HashSet or Set Class?
I'm used to Java where I have HashSets, ArrayLists and other Collections. But I'm workting on a PHP project right now.
I need to create a set, fill that set with objects (Strings in this case), but the Set can …