Home > Backend Development > PHP Tutorial > php filter all HTML tags

php filter all HTML tags

高洛峰
Release: 2016-11-29 14:51:02
Original
1302 people have browsed it

文章为你提供二款php 过滤所有HTML标记,他可以过滤所有的html标签啊,去除html标记,代码如下:

function text2html($txt){ 

        $txt = str_replace("  "," ",$txt); 

        $txt = str_replace("<","<",$txt);

$txt = str_replace(">",">",$txt); 

        $txt = preg_replace("/[ ]{1,}/isu","
 ",$txt); 

        return $txt; 

清除html标记,代码如下:

function clearhtml($str){ 

        $str = str_replace('<','<',$str);

$str = str_replace('>','>',$str); 

        return $str; 

}//开源软件:phpfensi.com


Related labels:
php
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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template