php常用功能函数二则

发布时间:2019-12-23编辑:脚本学堂
分享二个常用的php功能函数,一个是html代码过滤函数,另一个是html文本截取函数,有需要的朋友可以参考下。

本节内容:
php常用功能函数、html代码过滤函数、html文本截取函数

例1,html代码过滤函数
 

复制代码 代码示例:
<?php
function html2text($str){  
$str = preg_replace("/<style .*?</style>/is", "", $str); 
$str = preg_replace("/<script .*?</script>/is", "", $str); 
$str = preg_replace("/<br s*/?/>/i", "n", $str);
$str = preg_replace("/</?p>/i", "nn", $str);
$str = preg_replace("/</?td>/i", "n", $str);
$str = preg_replace("/</?div>/i", "n", $str);
$str = preg_replace("/</?blockquote>/i", "n", $str);
$str = preg_replace("/</?li>/i", "n", $str);
$str = preg_replace("/&nbsp;/i", " ", $str);
$str = preg_replace("/&nbsp/i", " ", $str);
$str = preg_replace("/&amp;/i", "&", $str);
$str = preg_replace("/&amp/i", "&", $str); 
$str = preg_replace("/&lt;/i", "<", $str);
$str = preg_replace("/&lt/i", "<", $str);
$str = preg_replace("/&ldquo;/i", '"', $str);
$str = preg_replace("/&ldquo/i", '"', $str);
$str = preg_replace("/&lsquo;/i", "'", $str);
$str = preg_replace("/&lsquo/i", "'", $str);
$str = preg_replace("/&rsquo;/i", "'", $str);
$str = preg_replace("/&rsquo/i", "'", $str);
$str = preg_replace("/&gt;/i", ">", $str);
$str = preg_replace("/&gt/i", ">", $str); 
$str = preg_replace("/&rdquo;/i", '"', $str);
$str = preg_replace("/&rdquo/i", '"', $str);
$str = strip_tags($str); 
$str = html_entity_decode($str, ENT_QUOTES, $encode);
$str = preg_replace("/&#.*?;/i", "", $str);
return $str;
}

例2,html文本截取函数
 

复制代码 代码示例:
<?php
function mysubstr($str, $start, $len) {
     $tmpstr = "";
     $strlen = $start + $len;
     for($i = 0; $i < $strlen; $i++) {
         if(ord(substr($str, $i, 1)) > 0xa0) {
             $tmpstr .= substr($str, $i, 2);
             $i++;
         } else
         $tmpstr .= substr($str, $i, 1);
     }
     return $tmpstr;
}

说明:
strip_tags()函数可以过滤html标签;
iconv("UTF-8","gb2312",$username),转码函数。