Sort Objects by Property with PHP

By  on  

I recently needed to display a list of authors within a WordPress blog.  The goal was to sort the author list by number of posts before outputting the list.  The method for calculating number of posts isn't a sortable key within WordPress' get_posts, so I had to sort the result list myself.  PHP's usort method, along with a custom function, allows you to accomplish the feat of sorting a collection of objects by key.

The PHP

The first step is creating the function that does the sorting -- this is that function:

function sort_objects_by_total($a, $b) {
	if($a->total_posts == $b->total_posts){ return 0 ; }
	return ($a->total_posts < $b->total_posts) ? -1 : 1;
}

The function returns -1 (smaller than), 0 (equal to), or 1 (larger than) when doing the sort comparisons.  The last is applying the sortation function to the array, which is done by usort:

usort($users, 'sort_objects_by_total');

The code above now ensures that my authors array is sorted by total_posts.  Keep this snippet in your PHP toolbox for the future -- I'm certain you'll need it at one time or another.

Recent Features

  • By
    Being a Dev Dad

    I get asked loads of questions every day but I'm always surprised that they're rarely questions about code or even tech -- many of the questions I get are more about non-dev stuff like what my office is like, what software I use, and oftentimes...

  • By
    6 Things You Didn&#8217;t Know About Firefox OS

    Firefox OS is all over the tech news and for good reason:  Mozilla's finally given web developers the platform that they need to create apps the way they've been creating them for years -- with CSS, HTML, and JavaScript.  Firefox OS has been rapidly improving...

Incredible Demos

  • By
    Save Web Form Content Using Control + S

    We've all used word processing applications like Microsoft Word and if there's one thing they've taught you it's that you need to save every few seconds in anticipation of the inevitable crash. WordPress has mimicked this functionality within their WYSIWYG editor and I use it...

  • By
    Create Custom Events in MooTools 1.2

    Javascript has a number of native events like "mouseover," "mouseout", "click", and so on. What if you want to create your own events though? Creating events using MooTools is as easy as it gets. The MooTools JavaScript What's great about creating custom events in MooTools is...

Discussion

  1. Sorin Badea

    Such a great discovery … this surely deserves a blog post.

  2. Rocka

    In PHP 5.3 and newer you could even use an anonymous function with usort (and all other functions that accept callables as parameter).

  3. The problem is usort is very slow. So if you want to sort many elements, you’d better learn how to use array_multisort.

  4. The sort_objects_by_total function can be further simplified:

    return $a->total_posts - $b->total_posts
  5. You’ll need this if you ever want to sort users by last name, since user_lastname is not one of the built-in orderby options. Did it yesterday, in fact.

  6. Abby

    Hi Everyone,

    I want to start my carrier in Php, but I am really confused fro where to start as I do not have any knowledge of php. Is it necessary to learn php with My SQL? I really need some books and other stuff to learn php apart from training. For classes I am starting my course at http://www.wiziq.com/course/5871-php-mysql-with-basic-javascript-integrated-course but I am still confused with which books to follow. I will really appreciate if you can guide me with some good books.

    Regards
    Abby

  7. The function in PHP is not too dissimilar to the JavaScript sort method.
    http://www.w3schools.com/jsref/jsref_sort.asp

    For quite some time i have been using both for cached JSON data, very powerful, but both have thier own gotcha’s to be wary of, specifically in date/datetime and various integer types sorting.

  8. qwerty

    You can do it with https://github.com/letsdrink/ouzo-goodies

    $result = Arrays::sort(array($person1, $person2), Comparator::compareBy('age'));
    

    See http://ouzo.readthedocs.org/en/latest/utils/comparators.html

  9. Marcel

    sort_objects_by_total is not a good name for your comparator function, it should rather be something like compare_objects_by_total_posts.

  10. Thanks David!
    I used your code to first compare the items by one property and then by another, to sort sections by subsections (Eg: 234 before 234A and 234B)
    Had a huge problem with later added subsections showing up last in the list fetched from the database.

    function sort_object_callback($a, $b){
    	if( $a->S == $b->S ) {
    		if( $a->SS == $b->SS ) { return 0; }
    		else return ( $a->SS SS ) ? -1 : 1;
    	}
    	return ( $a->S S ) ? -1 : 1;
    }
    

    Cheers mate!

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!