Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8932439
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:19:11+00:00 2026-06-15T09:19:11+00:00

How would I re-order an array of objects like: Array ( [0] => stdClass

  • 0

How would I re-order an array of objects like:

Array
(
    [0] => stdClass Object
        (
            [term_id] => 3
            [name] => Name
        )
    [1] => stdClass Object
        (
            [term_id] => 1
            [name] => Name2
        )
    [2] => stdClass Object
        (
            [term_id] => 5
            [name] => Name
        )
)

According to the objects term_id, against a custom defined array of ids:

$order_by = array( 5,3,1 )

What I’m using now is below, but I feel like I’m not taking advantage of some advanced sorting functions PHP has… Can anyone tell me what would work better?

$sorted_terms = array();
$order_by = array( 5,3,1 );

foreach( $order_by as $id ) {
    foreach ( $terms as $pos => $obj ) {
        if ( $obj->term_id == $id ) {
            $sorted_terms[] = $obj;
            break;
        }
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:19:11+00:00Added an answer on June 15, 2026 at 9:19 am

    Basically, the rank of your terms in their sorted order is the same as the rank of their corresponding ids, which happens to be the array keys in the $order_by array. So we just need to flip that array to get the mapping of ids to ranks, and then sort using it with a custom comparison function.

    Here’s a simple code snippet that should work:

    <?php
    
       $skeys = array_flip($order_by);
       usort($terms,
                 function($a,$b) use ($skeys){$a =  $skeys[$a->term_id]; $b = $skeys[$b->term_id]; return $a - $b;});
    

    The above code would work with PHP 5.3 or later.

    Here’s the same thing with pre 5.3 PHP:

     <?php
    
       $skeys = array_flip($order_by);
       function sfun($a,$b){
           global $skeys;
           $a =  $skeys[$a->term_id]; $b = $skeys[$b->term_id]; return $a - $b;
       }
    
       usort($terms, "sfun");
    

    The important functions are:

    • array_flip
    • usort
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In php, I would like to have the ability to re-order an associative array
I would like to realize array objects initialization by using the initialization statement as
How would I go about sorting an array of NSString Objects by a custom
I would like to order contents in a column when user clicks column header.
I would like to order by date and then team in a MySQL query.
I would like to use ORDER BY FIELD() (MySQL) in Django. Does Django support
In order to debug I would like to dump certain variables on to my
I would like to specify the order of initialization of portlets when the portal
In order to make bundle work on its own i would like to call
I would like to calculate total order amount in the previous month. I got

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.