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 926541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T19:42:01+00:00 2026-05-15T19:42:01+00:00

I have an array as following and I want to order that array by

  • 0

I have an array as following and I want to order that array by the value of the key “attack”. First keys of the arrays (15, 13, 18) are ID of some certain item from database, so I don’t want these keys to be changed when the array is sorted. Any help would be greatly appreciated.

This is the array:

$data = array(
    '15' => array(
        'attack' => '45', 'defence' => '15', 'total' => '10'
    ),
    '13' => array(
        'attack' => '25', 'defence' => '15', 'total' => '10'
    ),
    '18' => array(
        'attack' => '35', 'defence' => '15', 'total' => '10'
    )
);
  • 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-05-15T19:42:02+00:00Added an answer on May 15, 2026 at 7:42 pm

    Use uasort():

    This function sorts an array such that array indices maintain their correlation with the array elements they are associated with, using a user-defined comparison function.

    This is used mainly when sorting associative arrays where the actual element order is significant.

    Example:

    function cmp($a, $b) {
        if ($a['attack'] == $b['attack']) {
            return 0;
        }
        return ($a['attack'] < $b['attack']) ? -1 : 1;
    } 
    
    uasort($data, 'cmp');
    

    If the values are always strings, you can also use strcmp() in the cmp() function:

    function cmp($a, $b) {
        return strcmp($a['attack'], $b['attack']);
    } 
    

    Update:

    To sort in descending order you just have to change the return values:

    return ($a['attack'] < $b['attack']) ? 1 : -1;
    //                                     ^----^
    

    or to pick up @salathe’s proposal:

    return $b['attack'] - $a['attack'];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a KornShell (ksh) script that sets an array the following way:
I have an array like the following: array('category_name:', 'c1', 'types:', 't1') I want the
I have a column array with the following values in my sheet: 11, 15,
I have an associative array (object) of the following construction var menu = new
I have the following arrays in PHP (okay they are a bit bigger but
I have an array of numbers that potentially have up to 8 decimal places
I have an array of items that are time sensitive. After an amount of
I have an array of hashes, and I want the unique values out of
I am new to PHP. I have a PHP array that is two dimensional.
I have some C++ code, in which the following enum is declared: enum Some

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.