How to delete html tags in php

王林
Release: 2023-03-07 11:22:01
Original
2340 people have browsed it

How to delete html tags in php: You can use the strip_tags function to delete, such as [strip_tags("Hello world!",""); 】.

How to delete html tags in php

The strip_tags() function strips HTML, XML and PHP tags from a string and returns the stripped string.

(Video tutorial recommendation: java video tutorial)

Syntax:

strip_tags(string,allow)
Copy after login

Parameter introduction:

string Required. Specifies the string to check.​

allow Optional. Specifies allowed tags. These tags will not be deleted.

Example:

Strip the HTML tags in the string, but allow the use of tags

<?php
    echo strip_tags("Hello <b><i>world!</i></b>","<b>");
?>
Copy after login

Related recommendations:php training

The above is the detailed content of How to delete html tags in php. 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!