Free cookie consent management tool by TermsFeed Generator PHP Array Sort | Amir Kamizi
AMIR KAMIZI
Home Blog Courses Books Newsletter Store Membership Buy me a coffee
PHP Array Sort

PHP Array Sort

Last Updated on Feb 14, 2023

Introduction

If you want to sort an array in PHP there are 3 factors you should have in mind:

  1. do you want to sort by value or by the key?
  2. what is the order of your sort? Natural, descending , ascending or user defined?
  3. do you want to keep the key association? Or do you want to remove the keys and reassign them with new indexes?

So let’s get started with some of the most useful and common array sort functions in PHP:

Original Array

We have this array and we want to sort it:

$array = [
   'twitter' => 'pratham',
   'feedhive' => 'simon',
   'php' => 'amir',
   'oliver',
   'vitto',
   'hassib'
];
//Array (
//      [twitter] => pratham
//      [feedhive] => simon
//      [php] => amir
//      [0] => oliver
//      [1] => vitto
//      [2] => hassib
// )

As you can see we have 3 items that have string as key and 3 item that have numbers as key.

Before we start, note that sort functions that we are going to see, sort the original array. They don’t return a new array.

Now let’s get started.

sort

Sorts the array based on values

It sorts the values in ascending order

It removes the keys and reindexes the array

sort($array);
print_r($array);
//Array
//(
//   [0] => amir
//   [1] => hassib
//   [2] => oliver
//   [3] => pratham
//   [4] => simon
//   [5] => vitto
//)

rsort

Like sort but it sorts the values in descending order

rsort($array);
print_r($array);
//Array
//(
//  [0] => vitto
//  [1] => simon
//  [2] => pratham
//  [3] => oliver
//  [4] => hassib
//  [5] => amir
//)

ksort

Sorts the array based on keys

It sorts the keys in ascending order

So obviously it will keep the keys and won’t remove them

ksort($array);
print_r($array);
//Array
//(
//    [feedhive] => simon
//    [php] => amir
//    [twitter] => pratham
//    [0] => oliver
//    [1] => vitto
//    [2] => hassib
//)

krsort

It’s like ksort but it sorts the keys ins descending order

krsort($array);
print_r($array);
//Array
//(
//    [2] => hassib
//    [1] => vitto
//    [twitter] => pratham
//    [php] => amir
//    [feedhive] => simon
//    [0] => oliver
//)

asort

Sorts the array based on values

It sorts the values in ascending order

It keeps the original keys and won’t remove them

asort($array);
print_r($array);
//Array
//(
//    [php] => amir
//    [2] => hassib
//    [0] => oliver
//    [twitter] => pratham
//    [feedhive] => simon
//    [1] => vitto
//)

arsort

Like asort but sorts the values in descending order

arsort($array);
print_r($array);
//Array
//(
//    [1] => vitto
//    [feedhive] => simon
//    [twitter] => pratham
//    [0] => oliver
//    [2] => hassib
//    [php] => amir
//)

Conclusion

Now you know about array sort functions in PHP.

I recommend you to open a PHP files and try to sort an array with all the functions we learnt.

If you have any suggestions, questions, or opinions, please contact me. I’m looking forward to hearing from you!

Key takeaways

  • sort an array in PHP
  • sort function
  • rsort function
  • asrot function
  • arsort function
  • ksort function
  • krsort function
  • sort functions comparison

Category: programming

Tags: #php #array

Join the Newsletter

Subscribe to get my latest content by email.

I won't send you spam. Unsubscribe at any time.

Related Posts

PHP Operators
Mar 21, 2023 programming

PHP Operators

Today we are going to learn about Operators in PHP including arithmetic, comparison and logic operators. You will be using all of these operators during your career a lot. ...

5 Min Read Read More
PHP Exec
Mar 22, 2023 programming

PHP Exec

Today we are going to talk about exec in PHP. Did you know we can run system commands through PHP? Well not only it’s possible but also it’s very easy. You can do it with exec function ...

3 Min Read Read More
PHP Array Chunk
Feb 14, 2023 programming

PHP Array Chunk

Today we are going to talk about array chunk function in PHP. Sometimes you have to deal with a very large array of data. we'll learn how to split the array in different chunks. ...

6 Min Read Read More
Alpine.js Beginner to Advanced 2025: Everything You Need to Know
Jul 18, 2025 programming

Alpine.js Beginner to Advanced 2025: Everything You Need to Know

JavaScript frameworks have exploded in popularity over the past decade, but not every project needs—or benefits from—the complexity of tools like React or Vue. Sometimes, all you want is to sprinkle interactivity into your HTML without a heavy build process. This is exactly where Alpine.js shines. ...

29 Min Read Read More

Recommended Courses

Introduction to Machine Learning in PHP

Introduction to Machine Learning in PHP

Learn to Build Different Machine Learning Models Easily ...

PHP Tutorial Beginner to Advanced

PHP Tutorial Beginner to Advanced

Learn everything you need to start a successful career as a PHP developer ...