php array sort


 

php array sort

This section demonstrates the use of sort function in the php array.

This section demonstrates the use of sort function in the php array.

  • PHP Array sort function is used to sort the given array in ascending order.


Example of PHP Array Sort

<?php

$ar1=array("jack","mac","rock","barak");

sort($ar1);

foreach ($ar1 as $a)

echo " ".$a;

echo "<br>";

$ar1=array("a"=>"jack","m"=>"mac","r"=>"rock","b"=>"barak");

sort($ar1);

foreach ($ar1 as $a=>$b)

echo " ".$a." ".$b;

?>

Output

barak jack mac rock
0 barak 1 jack 2 mac 3 rock 

Ads