Mengurutkan angka ascending - descending di PHP

14 Mei 2012 20.43

<?php
$angka = 1324752;
$array = str_split($angka);

//sort untuk mengurutkan ascending
sort($array);
foreach($array as $value){
    echo $value;
}

echo "<br>";

//rsort untuk mengurutkan descending
rsort($array);
foreach($array as $value){
    echo $value;
}
?>

output :
1223457
7543221

Template oleh : meong-meoooong | Blogger
username
password