Sorting objects by their property in PHP
Lets say you have got an array of assorted objects, each with the same set of properties, which
are either numbers or strings, and you would like to sort them by one of those properties using PHP.
Since it is a fairly common requirement, you can expect the basic tools are ...
Read more »