In PHP, format removal can be achieved through the "strip_tags" function. The syntax is "strip_tags(string,allow)". This function always strips HTML comments and cannot be changed through the allow parameter.
Recommendation: "PHP Video Tutorial"
PHP Removes HTML Format and Style
strip_tags() function strips HTML, XML and PHP tags from strings.
Comments: This function always strips HTML comments. This cannot be changed via the allow parameter.
Note: This function is binary safe.
Syntax
strip_tags(string,allow)
Parameters
string Required. Specifies the string to check.
allow Optional. Specifies allowed tags. These tags will not be deleted.
Technical details
Return value: Returns the stripped string.
The above is the detailed content of How to remove format in php. For more information, please follow other related articles on the PHP Chinese website!