Wort sortieren
Schnipsel zum Sortieren von Wörtern nach der Wortlänge
|
Script: |
<?php
/* Schnipsel zum Sotieren
von wörtern nach der
wortlänge, mit dem längsten wort
zuert
*/
function cmpstr($word_1,
$word_2)
{
if((strlen($word_1))
== (strlen($word_2)))
return 0;
return (strlen($word_1)
> strlen($word_2))
? -1 : 1;
}
$testarray =
array("test",
"bla",
"hallo",
"tschuess",
"hallihallo");
usort($testarray,
"cmpstr");
foreach($testarray as
$key =>
$val)
{
echo $key .
" : " .
$val . "("
. strlen($val)
. ")<br>";
}
?>
|
|