Quote:
Originally Posted by StarBuG
Is it possible to rewrite german umlaute like ? ? ? ? into ae oe ue ss ?
|
Yes of course you can transform german umlauts to "ae", "ue" etc with my little hack right here.
Na klar kannst du deutsche Umlaute mit meinem kleinen Hack hier in "ae", "ue" etc umwandeln, so dass sie nicht komplett entfernt werden.
I am using this piece of code for my own forum.
REPLACE:
PHP Code:
function urlize($txt) {
global $vbulletin;
if ($vbulletin->options['vrewrite_stopword_on']) {
$stop_words = preg_split('#\s+#', $vbulletin->options['vrewrite_stopword_filter'] );
foreach ($stop_words AS $word) {
$txt = preg_replace('#\s' . $word . '\s#i', ' ', $txt);
}
}
$txt = unaccent($txt);
$txt = html_entity_decode($txt);
$txt = str_replace(' ', '-', $txt);
$txt = str_replace('_', '-', $txt);
$txt = preg_replace('#[^a-zA-Z0-9_\-]+#', '', $txt);
$txt = preg_replace('#[\-]+#', '-', $txt);
return strtolower($txt);
}
WITH:
PHP Code:
function urlize($txt) {
global $vbulletin;
if ($vbulletin->options['vrewrite_stopword_on']) {
$stop_words = preg_split('#\s+#', $vbulletin->options['vrewrite_stopword_filter'] );
foreach ($stop_words AS $word) {
$txt = preg_replace('#\s' . $word . '\s#i', ' ', $txt);
}
}
$txt = str_replace('?', 'ae', $txt);
$txt = str_replace('?', 'oe', $txt);
$txt = str_replace('?', 'ue', $txt);
$txt = str_replace('?', 'ss', $txt);
$txt = unaccent($txt);
$txt = html_entity_decode($txt);
$txt = str_replace(' ', '-', $txt);
$txt = str_replace('_', '-', $txt);
$txt = preg_replace('#[^a-zA-Z0-9_\-]+#', '', $txt);
$txt = preg_replace('#[\-]+#', '-', $txt);
return strtolower($txt);
}