how to remove html tags in php?

前端 未结 6 1788
时光说笑
时光说笑 2020-12-19 15:26

i posted some data using tinymce (in a symfony project).while retrieving back how can i remove html tags? strip_tags not working..

6条回答
  •  臣服心动
    2020-12-19 15:56

    Note that strip_tags returns a new string. It does not modify the original string, i.e:

    $html = '

    Test

    '; 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'

提交回复
热议问题