PHP strip_tags method to retain multiple HTML tags

高洛峰
Release: 2023-03-04 14:50:02
Original
1471 people have browsed it

This article introduces the method of PHP strip_tags function to retain multiple HTML tags. You can use the second parameter to set tags that do not need to be deleted, mainly involving the second parameter of strip_tags

strip_tags function

Syntax
string strip_tags (string str [, string allowable_tags])
Returns a string with HTML tags removed; you can use the second parameter to set tags that do not need to be deleted.

Usage:

Premise: If there is such a string now,

$str = "<p>我来自<b><a href=&#39;http://www.php.cn&#39;>PHP中文网</a></b></p>";
Copy after login

1, without retaining any HTML tags, the code will be like this:

echo strip_tags($str); 
// 输出:我来自PHP中文网
Copy after login

2. If you want to retain only the tag, you only need to write the string into the second parameter of strip_tags:

3. To retain

and < ;b>...Multiple tags, just separate the multiple tags with spaces and write them to the second parameter of strip_tags:

What if you want to use php to delete specific tags in the html tag?

This requires code to implement, as follows:

##Please pay attention to more related articles on how PHP strip_tags retains multiple HTML tags. PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template