trans.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. <?php
  2. class trans_lib
  3. {
  4. var $script = false;
  5. var $iframe = false;
  6. var $style = false;
  7. function __construct()
  8. {
  9. $this->script = false;
  10. $this->iframe = false;
  11. $this->style = false;
  12. //字符串过滤
  13. $this->html_string = array("&amp;","&nbsp;","'",'"',"<",">","\t","\r");
  14. $this->html_clear = array("&"," ","&#39;","&quot;","&lt;","&gt;","&nbsp; &nbsp; ","");
  15. //JS过滤
  16. $this->js_string = array("/<script(.*)<\/script>/isU");
  17. $this->js_clear = array("");
  18. //iframe框过滤
  19. $this->frame_string = array("/<frame(.*)>/isU","/<\/fram(.*)>/isU","/<iframe(.*)>/isU","/<\/ifram(.*)>/isU",);
  20. $this->frame_clear = array("","","","");
  21. //style样式过滤
  22. $this->style_string = array("/<style(.*)<\/style>/isU","/<link(.*)>/isU","/<\/link>/isU");
  23. $this->style_clear = array("","","");
  24. }
  25. #[兼容PHP4]
  26. function trans_lib()
  27. {
  28. $this->__construct();
  29. }
  30. function __destruct()
  31. {
  32. return true;
  33. }
  34. //设置全局状态
  35. function setting($script=false,$iframe=false,$style=false)
  36. {
  37. $this->script = $script;
  38. $this->iframe = $iframe;
  39. $this->style = $style;
  40. }
  41. function safe($msg)
  42. {
  43. $msg = $this->post_get($msg);
  44. $msg = $this->_safe($msg);
  45. if(!$msg)
  46. {
  47. return false;
  48. }
  49. return $msg;
  50. }
  51. //实体化HTML
  52. function st_safe($msg)
  53. {
  54. $msg = $this->_safe($msg);
  55. if(!$msg)
  56. {
  57. return false;
  58. }
  59. return $msg;
  60. }
  61. function _safe($msg)
  62. {
  63. if(is_array($msg))
  64. {
  65. foreach($msg AS $key=>$value)
  66. {
  67. $msg[$key] = $this->_safe($value);
  68. }
  69. }
  70. else
  71. {
  72. $msg = trim($msg);
  73. $msg = str_replace($this->html_string,$this->html_clear,$msg);
  74. $msg = str_replace(" ","&nbsp; &nbsp;",$msg);
  75. //过滤JS
  76. $msg = preg_replace($this->js_string,$this->js_clear,$msg);
  77. $msg = preg_replace($this->frame_string,$this->frame_clear,$msg);
  78. $msg = preg_replace($this->style_string,$this->style_clear,$msg);
  79. }
  80. return $msg;
  81. }
  82. #[用户加载文件的数据传输]
  83. function safeinc($msg)
  84. {
  85. $msg = $this->safe($msg);
  86. $msg = str_replace(".","_",$msg);
  87. return $msg;
  88. }
  89. function html($msg,$delurl=true)
  90. {
  91. $msg = $this->post_get($msg);
  92. if(!$msg)
  93. {
  94. return false;
  95. }
  96. if(is_array($msg))
  97. {
  98. foreach($msg AS $key=>$value)
  99. {
  100. $msg[$key] = $this->html($value);
  101. }
  102. }
  103. else
  104. {
  105. $msg = trim($msg);
  106. $msg = stripslashes($msg);
  107. if(!$this->script)
  108. {
  109. $msg = preg_replace($this->js_string,$this->js_clear,$msg);
  110. }
  111. if(!$this->iframe)
  112. {
  113. $msg = preg_replace($this->frame_string,$this->frame_clear,$msg);
  114. }
  115. if(!$this->style)
  116. {
  117. $msg = preg_replace($this->style_string,$this->style_clear,$msg);
  118. }
  119. if($delurl)
  120. {
  121. $url = $this->get_url();
  122. $msg = str_replace($url,"",$msg);
  123. }
  124. $msg = addslashes($msg);
  125. }
  126. return $msg;
  127. }
  128. function post_get($msg)
  129. {
  130. $val = $_POST[$msg] ? $_POST[$msg] : $_GET[$msg];
  131. return $val;
  132. }
  133. function int($id)
  134. {
  135. $id = $this->safe($id);
  136. return intval($id);
  137. }
  138. function float($id)
  139. {
  140. $id = $this->safe($id);
  141. return floatval($id);
  142. }
  143. function checkbox($id)
  144. {
  145. return isset($_POST[$id]) ? 1 : 0;
  146. }
  147. #[截取字符长度,仅支持UTF-8]
  148. function cut($string,$length,$dot="…")
  149. {
  150. if(!$string) return false;
  151. //过滤HTML代码
  152. $string = preg_replace("/<(.*)>/isU","",$string);
  153. if(strlen($string) <= $length)
  154. {
  155. return $string;
  156. }
  157. $strcut = '';
  158. $n = $tn = $noc = 0;
  159. while ($n < strlen($string))
  160. {
  161. $t = ord($string[$n]);
  162. if($t == 9 || $t == 10 || (32 <= $t && $t <= 126))
  163. {
  164. $tn = 1; $n++; $noc++;
  165. }
  166. elseif(194 <= $t && $t <= 223)
  167. {
  168. $tn = 2; $n += 2; $noc += 2;
  169. }
  170. elseif(224 <= $t && $t < 239)
  171. {
  172. $tn = 3; $n += 3; $noc += 2;
  173. }
  174. elseif(240 <= $t && $t <= 247)
  175. {
  176. $tn = 4; $n += 4; $noc += 2;
  177. }
  178. elseif(248 <= $t && $t <= 251)
  179. {
  180. $tn = 5; $n += 5; $noc += 2;
  181. }
  182. elseif($t == 252 || $t == 253)
  183. {
  184. $tn = 6; $n += 6; $noc += 2;
  185. }
  186. else
  187. {
  188. $n++;
  189. }
  190. if ($noc >= $length)
  191. {
  192. break;
  193. }
  194. }
  195. if ($noc > $length)
  196. {
  197. $n -= $tn;
  198. }
  199. $strcut = substr($string, 0, $n);
  200. return $strcut.$dot;
  201. }
  202. #[编码转换,使用PHP里的iconv功能]
  203. function charset($msg, $s_code="UTF-8", $e_code="GBK")
  204. {
  205. if(!$msg)
  206. {
  207. return false;
  208. }
  209. if(is_array($msg))
  210. {
  211. foreach($msg AS $key=>$value)
  212. {
  213. $msg[$key] = $this->charset($value,$s_code,$e_code);
  214. }
  215. }
  216. else
  217. {
  218. if(function_exists("iconv"))
  219. {
  220. $msg = iconv($s_code,$e_code,$msg);
  221. }
  222. }
  223. return $msg;
  224. }
  225. function num_format($a,$ext=2)
  226. {
  227. if(!$a || $a == 0)
  228. {
  229. return false;
  230. }
  231. if($a <= 1024)
  232. {
  233. $a = "1 KB";
  234. }
  235. elseif($a>1024 && $a<(1024*1024))
  236. {
  237. $a = round(($a/1024),$ext)." KB";
  238. }
  239. elseif($a>=(1024*1024) && $a<(1024*1024*1024))
  240. {
  241. $a = round(($a/(1024*1024)),$ext)." MB";
  242. }
  243. else
  244. {
  245. $a = round(($a/(1024*1024*1024)),$ext)." GB";
  246. }
  247. return $a;
  248. }
  249. function get_url()
  250. {
  251. $myurl = "http://".str_replace("http://","",$_SERVER["SERVER_NAME"]);
  252. $docu = $_SERVER["PHP_SELF"];
  253. $array = explode("/",$docu);
  254. $count = count($array);
  255. if($count>1)
  256. {
  257. foreach($array AS $key=>$value)
  258. {
  259. $value = trim($value);
  260. if($value)
  261. {
  262. if(($key+1) < $count)
  263. {
  264. $myurl .= "/".$value;
  265. }
  266. }
  267. }
  268. }
  269. $myurl .= "/";
  270. return $myurl;
  271. }
  272. function is_utf8($string)
  273. {
  274. 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);
  275. }
  276. function html_edit($content)
  277. {
  278. if(!$content)
  279. {
  280. return false;
  281. }
  282. $content = str_replace("&","&amp;",$content);
  283. $old = array("'",'"',"<",">");
  284. $new = array("&#39;","&quot;","&lt;","&gt;");
  285. return str_replace($old,$new,$content);
  286. }
  287. function edit_html($content)
  288. {
  289. if(!$content)
  290. {
  291. return false;
  292. }
  293. $old = array("&#39;","&quot;","&lt;","&gt;");
  294. $new = array("'",'"',"<",">");
  295. $content = str_replace($old,$new,$content);
  296. $content = str_replace("&amp;","&",$content);
  297. return $content;
  298. }
  299. function html_fck($msg)
  300. {
  301. if(!$msg)
  302. {
  303. return false;
  304. }
  305. $url = base_url();
  306. $imgArray = array();
  307. preg_match_all("/src=[\"|'| ]((.*)\.(gif|jpg|jpeg|bmp|png|swf))/isU",$msg,$imgArray);
  308. $imgArray = array_unique($imgArray[1]);
  309. $count = count($imgArray);
  310. if($count < 1)
  311. {
  312. return $msg;
  313. }
  314. foreach($imgArray AS $key=>$value)
  315. {
  316. $value = trim($value);
  317. if(strpos($value,"http://") === false && $value)
  318. {
  319. $msg = str_replace($value,$url.$value,$msg);
  320. }
  321. }
  322. return $msg;
  323. }
  324. }
  325. ?>