When using Symfony, be sure to use the getRaw() function otherwise the text cannot be stripped from it's HTML code, for example:
$myText = $sf_data->getRaw('myVarContainingText');
Then use strip_tags() as such:
$myText = strip_tags( $sf_data->getRaw('myVarContainingText') );