array sort by value in php

Today, We want to share with you array sort by value in php.In this post we will show you php sort multidimensional array by value alphabetically, hear for php sort multidimensional array by value descending we will give you demo and example for implement.In this post, we will learn about PHP Sorting Arrays Tutorial With Examples with an example.

PHP Sorting Arrays

PHP – Sort Functions For Arrays

  • sort() – ascending order
  • rsort() – descending order
  • asort() – ascending order, using to the value
  • ksort() – ascending order, using to the key
  • arsort() – descending order, using to the value
  • krsort() – descending order, using to the key

Sort Array in Ascending Order – sort()



Sort Array in Descending Order – rsort()



Sort Array (Ascending Order), According to Value – asort()

"35", "Sejal"=>"37", "Jagruti"=>"43");
asort($level);
?>

Sort Array (Ascending Order), According to Key – ksort()

"35", "Sejal"=>"37", "Jagruti"=>"43");
ksort($level);
?>

Sort Array (Descending Order), According to Value – arsort()

"35", "Sejal"=>"37", "Jagruti"=>"43");
arsort($level);
?>

Sort Array (Descending Order), According to Key – krsort()

"35", "Sejal"=>"37", "Jagruti"=>"43");
krsort($level);
?>

using krsort():

 75,
    'Sejaljamin' => 89,
    'Girdhar' => 101
  ];
  krsort($weight);
?>

use ksort() for an ascending order:

 75, 
    'Sejaljamin' => 89,
    'Girdhar' => 101
  ];  	
  ksort($weight);
?>

I hope you get an idea about array sort by value in php.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

Leave a Comment