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 strip_tags
but it's not very reliable. There is a very, very, VERY good project design specifically for this: HTML Purifier.
It battle-hardened, tested and very good. strip_tags
is the easy, fast and go way, but it can miss out some malformated html that a browser will actually parse and execute.
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:
$html = '<p>Test</p>';
strip_tags($html); // Throws away the result, since you don't assign the return
// value of the function to a variable
$stripped = strip_tags($html);
echo $stripped; // echos 'Test'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With