Hallo,
Wie kann ich zählen, wie oft ein Wort im String vorkommt?
So? Oder gibt es da auch noch ne andere Möglichkeit?
Floriam
Wie kann ich zählen, wie oft ein Wort im String vorkommt?
PHP-Code:
<?php
function count_words($str) {
$word_count = array();
$array = explode(" ", $str);
foreach($array as $var) {
$word_count[$var]++;
}
return $word_count;
}
?>
Floriam
EDIT:
Sorry, zählt natürlich jedes Wort, aber wollte wissen ob der Ansatz richtig ist
Kommentar