search
Homephp教程php手册php过滤html标签多种方法

方法一,代码如下:

echo strip_tags("hello <b>world!</b>");

strip_tags --- 去除字串中的html和php标签

语法:string strip_tags (string str [, string allowable_tags])

说明:此函式试着从给予的字串中去除所有html和php标签,如果是不完整或是假的标签时则会有错误,它和fgetss( )使用相同的方法去除标签,代码如下:

$reg = &#39;/(</?p>|<brs*/?>)|<.+?>/i&#39;;echo preg_replace($reg,&#39;$1&#39;,$str);

过滤方法二,代码如下:

function delhtml($str){//清除html标签 
    $st=-1; //开始 
    $et=-1; //结束 
    $stmp=array(); 
    $stmp[]=" "; 
    $len=strlen($str); 
    for($i=0;$i<$len;$i++){ 
       $ss=substr($str,$i,1); 
       if(ord($ss)==60){ //ord("<")==60 
        $st=$i;//开源代码phprm.com 
       } 
       if(ord($ss)==62){ //ord(">")==62 
        $et=$i; 
        if($st!=-1){ 
         $stmp[]=substr($str,$st,$et-$st+1); 
        } 
       } 
    } 
    $str=str_replace($stmp,"",$str); 
    return $str; 
}

过滤方法三,代码如下:

function clear_html_label($html)  
{  
    $search = array ("&#39;<script[^>]*?>.*?</script>&#39;si", "&#39;<[/!]*?[^<>]*?>&#39;si", "&#39;([rn])[s]+&#39;", "&#39;&(quot|#34);&#39;i", "&#39;&(amp|#38);&#39;i", "&#39;&(lt|#60);&#39;i", "&#39;&(gt|#62);&#39;i", "&#39;&(nbsp|#160);&#39;i", "&#39;&(iexcl|#161);&#39;i", "&#39;&(cent|#162);&#39;i", "&#39;&(pound|#163);&#39;i", "&#39;&(copy|#169);&#39;i", "&#39;&#(d+);&#39;e");  
    $replace = array ("", "", "1", """, "&", "<", ">", " ", chr(161), chr(162), chr(163), chr(169), "chr(1)"); 
     
    return preg_replace($search, $replace, $html);  
}
 
//实例应用 
$string =&#39;aaa<br /> <script>fdsafsa&#39;;  
echo clear_html_label($string);//aaa fdsafsa


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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function