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 calculate distance between 2 places in 9 easy steps
Feb 14, 2023 programming

PHP calculate distance between 2 places in 9 easy steps

Today we are going to talk about calculating the distance between two place in PHP in a few easy steps. ...

7 Min Read Read More
PHP Validate URL
Feb 15, 2023 programming

PHP Validate URL

Today we are going to talk about validating emails in PHP. In a lot of projects you need to validate the URLs given by the user to make sure the address has a correct format. ...

4 Min Read Read More
What to Do After Learning Programming
Mar 17, 2024 programming

What to Do After Learning Programming

Congratulations! You've learned programming and now have a solid foundation in coding. But what should you do next? ...

7 Min Read Read More
PHP Beginner to Advanced 2025: The Complete Guide to Mastering PHP and Building Modern Web Applications
Jul 17, 2025 programming

PHP Beginner to Advanced 2025: The Complete Guide to Mastering PHP and Building Modern Web Applications

PHP is often called the engine room of the modern web. Despite debates about newer technologies like Node.js, Go, or Python’s Django, PHP has remained a consistent favorite among developers. In fact, as of 2025, PHP powers over 75% of all websites that use a known server-side programming language. ...

9 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 ...