strip_tags( string $_str , string $_allowable_tags ) :
strip_tags
Kurzbeschreibung
Entfernt HTML-Tags aus einem String.
Funktionsbeschreibung
Beispiele
{%
$_text = "This is a text that has html-Tags.<br> You do not want these tags if you parse something in the text.";
$_clearText = strip_tags($_text);
print($_clearText);
# Outputs : This is a text that has html-Tags. You do not want these tags if you parse something in the text.
%}