Frage

Ich habe eine array wie diese

$data = array(
    "163",
    "630",
    "43",
    "924",
    "4",
    "54"
);

Wie kann ich die kleinsten und größten Werte auswählen aus es nach Stringlänge NICHT Zahlenwert. (für dieses Beispiel ist es 1 (kleinste) und 3 (größte) .

Andere Tipps

Hier ist eine verbesserte Version des brian_d Code :

$min = PHP_INT_MAX;
$max = -1;

foreach ($data as $a) {
    $length = strlen($a);
    $max = max($max, $length);
    $min = min($min, $length);
}

Auch wenn in diesem Fall ist es nicht ratsam, weil Sie das Array zweimal werden durchlaufen werden, können Sie auch a href verwenden <= „http://php.net/manual/en/function.array-reduce.php“ rel = "nofollow noreferrer"> array_reduce jedes Element gegen den Rest zu vergleichen. Wie folgt aus:

<?php

$data = array('163','630','43','42','999','31');
//Will return the longest element that is nearest to the end of the array (999)
//That's why we use strlen() on the result.
$max_l = strlen(array_reduce($data,'maxlen'));
//Will return the shortest element that is nearest to the end of the array (31)
$min_l = strlen(array_reduce($data,'minlen'));

echo "The longest word is $max_l characters, while the shortest is $min_l\n";

function maxlen($k,$v) {
        if (strlen($k) > strlen($v)) return $k;
        return $v;
}
function minlen($k,$v) {
        if ($k == '') return PHP_INT_MAX;
        if (strlen($k) < strlen($v)) return $k;
        return $v;
}
?>

Wenn Sie PHP verwenden 5.3.0+ können Sie nutzen Verschlüsse :

<?php
   $max_l = strlen(array_reduce($data,
                function ($k,$v) { return (strlen($k) > strlen($v)) ? $k : $v; }
        ));

   $min_l = strlen(array_reduce($data,
                function ($k,$v) {
                        if (!$k) return PHP_INT_MAX;
                        return (strlen($k) < strlen($v)) ? $k : $v;
                }
        ));

echo "The longest word is $max_l characters, while the shortest is $min_l\n";
?>
$min = 100;
$max = -1;

foreach($data as $a){
  $length = strlen($a);
  if($length > $max){ $max = $length; }
  else if($length < $min){ $min = $length; }
}
<?php
$array = array(
    "163",
    "630",
    "43",
    "924",
    "4",
    "54"
);
$arraycopy  = array_map('strlen',$array);
asort($arraycopy);

$min = reset($arraycopy);

//if you need a single 'minword'
$minword = $array[key($arraycopy)];
//if you need them all
$minwords = array_intersect_key($array,array_flip(array_keys($arraycopy,$min)));


$max = end($arraycopy);
//if you need a single 'maxword'
$maxword = $array[key($arraycopy)];
//if you need them all:
$maxwords = array_intersect_key($array,array_flip(array_keys($arraycopy,$max)));

var_dump($min,$max,$minword,$maxword,$minwords,$maxwords);

Für die Komplettierung, hier ist ein Einzeiler für Maximum und Minimum:

$maximum = max(array_map('strlen', $array));
$minimum = min(array_map('strlen', $array));
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top