i posted some data using tinymce (in a symfony project).while retrieving back how can i remove html tags? strip_tags not working..
|
|
The easies way is to use It battle-hardened, tested and very good. Please, don't use regular expression to parse html! |
|||
|
|
Note that strip_tags returns a new string. It does not modify the original string, i.e:
|
|||||||||
|
|
You could use strip_tags:
It should work in symfony. Make sure that you have done everything correctly. |
|||
|
|
When using Symfony, be sure to use the getRaw() function otherwise the text cannot be stripped from it's HTML code, for example:
Then use strip_tags() as such:
|
|||
|
|
|
strip_tags(); you need to put what ever your $ is wrapped with html. ........... |
|||
|
|