Home > Article > Backend Development > How to clear HTML format in php
How to clear HTML format in php: You can use the strip_tags() function to achieve this. The strip_tags() function can strip HTML and XML tags from a string and return the stripped string. Function syntax: [strip_tags(string,allow)].
The strip_tags() function strips HTML, XML and PHP tags from a string and returns the stripped string.
(Recommended tutorial: php graphic tutorial)
Syntax:
strip_tags(string,allow)
Parameters:
string Required. Specifies the string to check.
#allow Optional. Specifies allowed tags. These tags will not be deleted.
(Video tutorial recommendation: php video tutorial)
Code example:
<?php echo strip_tags("Hello <b><i>world!</i></b>","<b>"); ?>
The above is the detailed content of How to clear HTML format in php. For more information, please follow other related articles on the PHP Chinese website!