How to remove html tags in php?

青灯夜游
Release: 2023-03-07 09:02:01
Original
3492 people have browsed it

方法:1、使用str_replace()函数查找指定html标签,将其替换为空字符(''),语法“str_replace("html标签","",字符串)”;2、使用strip_tags()函数将字符串中的HTML、XML标签去除。

How to remove html tags in php?

推荐:《PHP视频教程

php去除html标签的方法

方法1:直接取出想要取出的标记

使用str_replace()函数将字符串中的html标签替换为空字符('').

<?php
header(&#39;content-type:text/html;charset=utf-8&#39;);
$str="Hello <br/>world!";
$str=str_replace("<br/>","",$str);
//$str=htmlspecialchars($str);
echo $str;
?>
Copy after login

输出:

Hello world!
Copy after login

方法2:使用strip_tags()函数

PHP 中有个 strip_tags 函数可以方便地去除 HTML 标签。

strip_tags() 函数剥去字符串中的 HTML、XML 以及 PHP 的标签。

echo strip_tags(“Hello <b>World</b>”); // 去除 HTML、XML 以及 PHP 的标签。
Copy after login

对于非标准的 HTML 代码也能正确的去除:

echo strip_tags(“<a href=\\”>\\”>cftea</a>”); //输出 cftea
Copy after login

在PHP中可以使用strip_tags函数去除HTML标签,看下面示例:

<?php
$str = "Hello <b><i>world!</i></b>";
echo(htmlspecialchars($str)."<br>");
echo(strip_tags($str));
?>
Copy after login

输出:

How to remove html tags in php?

更多编程相关知识,请访问:编程视频课程!!

The above is the detailed content of How to remove 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!