11

How to sort an array values alphabetically in PHP

 2 years ago
source link: https://www.laravelcode.com/post/how-to-sort-an-array-values-alphabetically-in-php
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

How to sort an array values alphabetically in PHP

  3326 views

  2 years ago

PHP

Use the PHP sort() and rsort() function

The PHP sort() and rsort() functions can be used for sorting numeric or indexed arrays. The following sections will show you how these functions basically work:

Sorting Numeric Arrays in Ascending Order

You can use the sort() function for sorting the numeric array elements or values alphabetically or numerically in the ascending order. Let's try out an example to see how it works:

<?php
$text = array("Sky", "Cloud", "Birds", "Rainbow", "Moon");
$numbers = array(1, 2, 3.5, 5, 8, 10);
 
// Sorting the array of string
sort($text);
print_r($text);
echo "<br>";
 
// Sorting the array of numbers
sort($numbers);
print_r($numbers);
?>
Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]


About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK