123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348 |
- <?php
- class trans_lib
- {
- var $script = false;
- var $iframe = false;
- var $style = false;
- function __construct()
- {
- $this->script = false;
- $this->iframe = false;
- $this->style = false;
- //字符串过滤
- $this->html_string = array("&"," ","'",'"',"<",">","\t","\r");
- $this->html_clear = array("&"," ","'",""","<",">"," ","");
- //JS过滤
- $this->js_string = array("/<script(.*)<\/script>/isU");
- $this->js_clear = array("");
- //iframe框过滤
- $this->frame_string = array("/<frame(.*)>/isU","/<\/fram(.*)>/isU","/<iframe(.*)>/isU","/<\/ifram(.*)>/isU",);
- $this->frame_clear = array("","","","");
- //style样式过滤
- $this->style_string = array("/<style(.*)<\/style>/isU","/<link(.*)>/isU","/<\/link>/isU");
- $this->style_clear = array("","","");
- }
- #[兼容PHP4]
- function trans_lib()
- {
- $this->__construct();
- }
- function __destruct()
- {
- return true;
- }
- //设置全局状态
- function setting($script=false,$iframe=false,$style=false)
- {
- $this->script = $script;
- $this->iframe = $iframe;
- $this->style = $style;
- }
- function safe($msg)
- {
- $msg = $this->post_get($msg);
- $msg = $this->_safe($msg);
- if(!$msg)
- {
- return false;
- }
- return $msg;
- }
- //实体化HTML
- function st_safe($msg)
- {
- $msg = $this->_safe($msg);
- if(!$msg)
- {
- return false;
- }
- return $msg;
- }
- function _safe($msg)
- {
- if(is_array($msg))
- {
- foreach($msg AS $key=>$value)
- {
- $msg[$key] = $this->_safe($value);
- }
- }
- else
- {
- $msg = trim($msg);
- $msg = str_replace($this->html_string,$this->html_clear,$msg);
- $msg = str_replace(" "," ",$msg);
- //过滤JS
- $msg = preg_replace($this->js_string,$this->js_clear,$msg);
- $msg = preg_replace($this->frame_string,$this->frame_clear,$msg);
- $msg = preg_replace($this->style_string,$this->style_clear,$msg);
- }
- return $msg;
- }
- #[用户加载文件的数据传输]
- function safeinc($msg)
- {
- $msg = $this->safe($msg);
- $msg = str_replace(".","_",$msg);
- return $msg;
- }
- function html($msg,$delurl=true)
- {
- $msg = $this->post_get($msg);
- if(!$msg)
- {
- return false;
- }
- if(is_array($msg))
- {
- foreach($msg AS $key=>$value)
- {
- $msg[$key] = $this->html($value);
- }
- }
- else
- {
- $msg = trim($msg);
- $msg = stripslashes($msg);
- if(!$this->script)
- {
- $msg = preg_replace($this->js_string,$this->js_clear,$msg);
- }
- if(!$this->iframe)
- {
- $msg = preg_replace($this->frame_string,$this->frame_clear,$msg);
- }
- if(!$this->style)
- {
- $msg = preg_replace($this->style_string,$this->style_clear,$msg);
- }
- if($delurl)
- {
- $url = $this->get_url();
- $msg = str_replace($url,"",$msg);
- }
- $msg = addslashes($msg);
- }
- return $msg;
- }
- function post_get($msg)
- {
- $val = $_POST[$msg] ? $_POST[$msg] : $_GET[$msg];
- return $val;
- }
- function int($id)
- {
- $id = $this->safe($id);
- return intval($id);
- }
- function float($id)
- {
- $id = $this->safe($id);
- return floatval($id);
- }
- function checkbox($id)
- {
- return isset($_POST[$id]) ? 1 : 0;
- }
- #[截取字符长度,仅支持UTF-8]
- function cut($string,$length,$dot="…")
- {
- if(!$string) return false;
- //过滤HTML代码
- $string = preg_replace("/<(.*)>/isU","",$string);
- if(strlen($string) <= $length)
- {
- return $string;
- }
- $strcut = '';
- $n = $tn = $noc = 0;
- while ($n < strlen($string))
- {
- $t = ord($string[$n]);
- if($t == 9 || $t == 10 || (32 <= $t && $t <= 126))
- {
- $tn = 1; $n++; $noc++;
- }
- elseif(194 <= $t && $t <= 223)
- {
- $tn = 2; $n += 2; $noc += 2;
- }
- elseif(224 <= $t && $t < 239)
- {
- $tn = 3; $n += 3; $noc += 2;
- }
- elseif(240 <= $t && $t <= 247)
- {
- $tn = 4; $n += 4; $noc += 2;
- }
- elseif(248 <= $t && $t <= 251)
- {
- $tn = 5; $n += 5; $noc += 2;
- }
- elseif($t == 252 || $t == 253)
- {
- $tn = 6; $n += 6; $noc += 2;
- }
- else
- {
- $n++;
- }
- if ($noc >= $length)
- {
- break;
- }
- }
- if ($noc > $length)
- {
- $n -= $tn;
- }
- $strcut = substr($string, 0, $n);
- return $strcut.$dot;
- }
- #[编码转换,使用PHP里的iconv功能]
- function charset($msg, $s_code="UTF-8", $e_code="GBK")
- {
- if(!$msg)
- {
- return false;
- }
- if(is_array($msg))
- {
- foreach($msg AS $key=>$value)
- {
- $msg[$key] = $this->charset($value,$s_code,$e_code);
- }
- }
- else
- {
- if(function_exists("iconv"))
- {
- $msg = iconv($s_code,$e_code,$msg);
- }
- }
- return $msg;
- }
- function num_format($a,$ext=2)
- {
- if(!$a || $a == 0)
- {
- return false;
- }
- if($a <= 1024)
- {
- $a = "1 KB";
- }
- elseif($a>1024 && $a<(1024*1024))
- {
- $a = round(($a/1024),$ext)." KB";
- }
- elseif($a>=(1024*1024) && $a<(1024*1024*1024))
- {
- $a = round(($a/(1024*1024)),$ext)." MB";
- }
- else
- {
- $a = round(($a/(1024*1024*1024)),$ext)." GB";
- }
- return $a;
- }
- function get_url()
- {
- $myurl = "http://".str_replace("http://","",$_SERVER["SERVER_NAME"]);
- $docu = $_SERVER["PHP_SELF"];
- $array = explode("/",$docu);
- $count = count($array);
- if($count>1)
- {
- foreach($array AS $key=>$value)
- {
- $value = trim($value);
- if($value)
- {
- if(($key+1) < $count)
- {
- $myurl .= "/".$value;
- }
- }
- }
- }
- $myurl .= "/";
- return $myurl;
- }
- function is_utf8($string)
- {
- return preg_match('/^(?:[x09x0Ax0Dx20-x7E]|[xC2-xDF][x80-xBF]|xE0[xA0-xBF][x80-xBF]|[xE1-xECxEExEF][x80-xBF]{2}|xED[x80-x9F][x80-xBF]|xF0[x90-xBF][x80-xBF]{2}|[xF1-xF3][x80-xBF]{3}| xF4[x80-x8F][x80-xBF]{2})*$/xs',$string);
- }
- function html_edit($content)
- {
- if(!$content)
- {
- return false;
- }
- $content = str_replace("&","&",$content);
- $old = array("'",'"',"<",">");
- $new = array("'",""","<",">");
- return str_replace($old,$new,$content);
- }
- function edit_html($content)
- {
- if(!$content)
- {
- return false;
- }
- $old = array("'",""","<",">");
- $new = array("'",'"',"<",">");
- $content = str_replace($old,$new,$content);
- $content = str_replace("&","&",$content);
- return $content;
- }
- function html_fck($msg)
- {
- if(!$msg)
- {
- return false;
- }
- $url = base_url();
- $imgArray = array();
- preg_match_all("/src=[\"|'| ]((.*)\.(gif|jpg|jpeg|bmp|png|swf))/isU",$msg,$imgArray);
- $imgArray = array_unique($imgArray[1]);
- $count = count($imgArray);
- if($count < 1)
- {
- return $msg;
- }
- foreach($imgArray AS $key=>$value)
- {
- $value = trim($value);
- if(strpos($value,"http://") === false && $value)
- {
- $msg = str_replace($value,$url.$value,$msg);
- }
- }
- return $msg;
- }
- }
- ?>
|