Hi!
Anmerkung: You might wonder why trim(html_entity_decode(' ')); doesn't reduce the string to an empty string, that's because the ' ' entity is not ASCII code 32 (which is stripped by trim()) but ASCII code 160 (0xa0) in the default ISO 8859-1 characterset.
Mein problem ist, dass meine Template-Klasse das mit html_entity_decode rausparst. Aber dann werden anstatt Leerstellen ? angezeigt.
Weiss jemand was man dagegen machen kann?
Trifft im utf8 mode zu
Anmerkung: You might wonder why trim(html_entity_decode(' ')); doesn't reduce the string to an empty string, that's because the ' ' entity is not ASCII code 32 (which is stripped by trim()) but ASCII code 160 (0xa0) in the default ISO 8859-1 characterset.
Mein problem ist, dass meine Template-Klasse das mit html_entity_decode rausparst. Aber dann werden anstatt Leerstellen ? angezeigt.
Weiss jemand was man dagegen machen kann?
Trifft im utf8 mode zu
Kommentar