“PHP Get Max Key im assoziativen Array” Code-Antworten

PHP Max -Wert im assoziativen Array

<?php
$myarrayassoc = array("Cycles" => 3, "Bikes" => 6, "Cars" => 11);
$value = max($myarrayassoc);
$key = array_search($value, $myarrayassoc);
echo "The max value is: ".$value.", its key is: ".$key;
?>
Helpful Hyena

PHP Get Max Key im assoziativen Array

$array = array(0 => "-1121", 1 => "-1605", 2 => "100", 3 => "55");
echo max(array_keys($array)); ///OUTPUT: 3
artharus

Ähnliche Antworten wie “PHP Get Max Key im assoziativen Array”

Fragen ähnlich wie “PHP Get Max Key im assoziativen Array”

Weitere verwandte Antworten zu “PHP Get Max Key im assoziativen Array” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen