“PHP sortiert hight bis niedrig” Code-Antworten

Sortieren Sie Array PHP

<?php
$fruits = array("d" => "lemon", "a" => "orange", "b" => "banana", "c" => "apple");
asort($fruits);
foreach ($fruits as $key => $val) {
    echo "$key = $val\n";
}
?>
//Would output:
c = apple
b = banana
d = lemon
a = orange  
GelatinousMustard

PHP sortiert hight bis niedrig

$letters=array("b","a","c");
arsort($letters); //referse sort an array ("c","a","b")
Friendly Hawk

Ähnliche Antworten wie “PHP sortiert hight bis niedrig”

Fragen ähnlich wie “PHP sortiert hight bis niedrig”

Weitere verwandte Antworten zu “PHP sortiert hight bis niedrig” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen