Ist das so, dass die Emailadresse wie bei wbb verschlüssel werden? Also jeder Buchstabe:
& # 0 6 1 ; (ich glaube das war ein "A")
Damit wäre ich nicht zufrieden. Die entschlüssel ich wie folgt:
Code: Alles auswählen
function unhtmlentities($string)
{
// replace numeric entities
$string = preg_replace('~&#x([0-9a-f]+);~ei', 'chr(hexdec("\\1"))', $string);
$string = preg_replace('~&#([0-9]+);~e', 'chr(\\1)', $string);
// replace literal entities
$trans_tbl = get_html_translation_table(HTML_ENTITIES);
$trans_tbl = array_flip($trans_tbl);
return strtr($string, $trans_tbl);
}