Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have

$finalprint[$counting] = $ppn.' '.$ppn2;

By using loop i have saved some data into the array. Now have also done the sorting.

arsort($finalprint); // i think this would arrange the data into descending order by $counting

Now I have data's like

$finalprint[426] = "XYZ"
$finalprint[124] = "ABC"
$finalprint[333] = "MNO"

How i can print the values of this array, like XYZ MNO ABC ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
316 views
Welcome To Ask or Share your Answers For Others

1 Answer

if you want to sort according to values in desc order

$finalprint[] = "XYZ";
$finalprint[] = "ABC";
$finalprint[] = "MNO";

rsort($finalprint);

foreach ($finalprint as $val) {
    echo  $val." " ;
}

o/p XYZ MNO ABC

if you want to sort according to keys in desc order

krsort($finalprint);

foreach ($finalprint as $val) {
        echo  $val." " ;
    }

o/p MNO ABC XYZ


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...