View Single Post
  #67  
Old 08-21-2007, 08:55 AM
Sabari Sabari is offline
D-Web Genius
 
Join Date: Jul 2007
Posts: 943
Sabari is on a distinguished road
Default Re: Using Arrays in PHP

natsort()

natsort — Sort an array using a "natural order" algorithm

Example: natsort()
<?php
$array1 = $array2 = array("img12.png", "img10.png", "img2.png", "img1.png");

sort($array1);
echo "Standard sorting\n";
print_r($array1);

natsort($array2);
echo "\nNatural order sorting\n";
print_r($array2);
?>


The above example will output:

Standard sorting
Array
(
[0] => img1.png
[1] => img10.png
[2] => img12.png
[3] => img2.png
)

Natural order sorting
Array
(
[3] => img1.png
[2] => img2.png
[1] => img10.png
[0] => img12.png
)

__________________
Thanks & Regards
Sabari...
Reply With Quote