Hallo Freunde des gehobenen Forumsgenußes,
Kann es sein, dass du soeben den Rekord in diesem Forum gebrochen hast, möglichst viele Zwinker-Smilies zu setzen?
Auszug aus einer Häufigkeits-Analyse:
[die] => 10
[;-)] => 10
[nicht] => 9
[ich] => 8
[js] => 8
[es] => 6
[das] => 6
[ist] => 6
[der] => 6
[und] => 5
;-)
function html_indexer($html) {
while ($html != strip_tags($html)) {
$html = strip_tags($html);
}
$html = strtolower($html);
$entities = array(
'<','>','&','ä','Ä','ö','Ö','ü','Ü',' ','"');
$chars = array(
'<' ,'>' ,'&' ,'ä' ,'Ä' ,'ö' ,'Ö' ,'ü' ,'Ü' ,' ' ,'"');
$html = str_replace($entities, $chars, $html);
#$html = preg_replace('#[^a-zA-ZäöüÄÖÜß]#', ' ', $html);
$badwords = array (
'der','die','das','wer','wie','was','und','man','den','zu','an','ich','ist','des','bei',
'auf','für','in','von','einen','nicht','mit','um','eigene','aber','über','bzw','auf','unter',
'ein','hier'
);
#foreach ($badwords as $badword) {
$html = str_replace(' '.$badword.'',' ',$html);
#}
$html = preg_replace('#\s+#', ' ', $html);
$html = preg_replace('#^\s|\s$#', '', $html);
$html = preg_replace('#[.:,;!"?]\s#', ' ', $html);
$array = array_count_values(explode(' ', $html));
arsort($array, SORT_NUMERIC);
return $array;
}
Gruß
Alexander Brock
/voodoo.css:
#GeorgeWBush { position:absolute; bottom:-6ft; }