About PHP strip_tags retaining multiple HTML tags

不言
Release: 2023-04-01 07:06:01
Original
2197 people have browsed it

This article mainly introduces the method of PHP strip_tags to retain multiple HTML tags. Friends who need it can refer to it.

This article introduces the method of PHP strip_tags function to retain multiple HTML tags. You can use the second one. Parameters 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;//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 the ... multiple tags, just separate the multiple tags with spaces and write them to the second parameter of strip_tags:

If you want to use php to delete html What about specific tags in markup?

This requires code to implement, as follows:

The above is the entire content of this article. I hope it will be helpful to everyone's learning. For more related content, please pay attention to PHP Chinese net!

Related recommendations:

Use html_entity_decode to implement HTML entity escaping in php

##

The above is the detailed content of About PHP strip_tags retaining multiple HTML tags. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!