Home  >  Article  >  Backend Development  >  How to remove html tags in php?

How to remove html tags in php?

青灯夜游
青灯夜游Original
2020-11-04 12:24:233487browse

方法: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;
?>

输出:

Hello world!

方法2:使用strip_tags()函数

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

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

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

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

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

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

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

输出:

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!

Statement:
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