strip_tags() function removes all HTML and PHP tags from string, leaving only the text entities. : strip_tags « String « PHP






strip_tags() function removes all HTML and PHP tags from string, leaving only the text entities.

 
Its syntax is: string strip_tags (string string [, string allowable_tags])

<?
    $user_input = "i just <b>love</b> PHP!";
    $stripped_input = strip_tags($user_input);
    print $stripped_input;
?>
  
  








Related examples in the same category

1.strip_tags
2.strip_tags() function, first argument is the text to transform.
3.strip_tags.php
4.strip_tags.php
5.string strip_tags ( string html_text [, string allowed_tags] ) strips HTML and PHP tags from a string
6.Stripping HTML tags from a string
7.Strip all except a few tags