<?php $field = explode(',', $data); array_walk($field, array($this, 'add_special_char')); $data = implode(',', $field); /** * 對欄位兩邊加反引號,以保證資料庫安全 * @param $value 數組值 */ public function add_special_char(&$value) { if('*' == $value || false !== strpos($value, '(') || false !== strpos($value, '.') || false !== strpos ( $value, '`')) { //不處理包含* 或者 使用了sql方法。 } else { $value = '`'.trim($value).'`'; } return $value; } function str_filter($str) { $str = htmlspecialchars ( $str ); if (! get_magic_quotes_gpc ()) { $str = addslashes ( $str ); } //過濾危險字元 return preg_replace ( "/["'=]|(and)|(or)|(create)|(update)|(alter)|(delete)|(insert)|(load_file)|(outfile)|(count)|(%20)|(char)/i", "", $str ); } /* 函數名稱:str_check() 函數作用:對提交的字串進行過濾 參 數:$var: 要處理的字串 返 回 值:返回過濾後的字串 */ function str_check($str) { if (! get_magic_quotes_gpc ()) { // 判斷magic_quotes_gpc是否開啟 $str = addslashes ( $str ); // 進行過濾 } $str = str_replace ( "_", "_", $str ); // 把 '_'過濾掉 $str = str_replace ( "%", "%", $str ); // 把 '%'過濾掉 return $str; } /* 函數名稱:post_check() 函數作用:對提交的編輯內容進行處理 參 數:$post: 要提交的內容 返 回 值:$post: 返回過濾後的內容 */ function post_check($post) { if (! get_magic_quotes_gpc ()) { // 判斷magic_quotes_gpc是否為開啟 $post = addslashes ( $post ); // 進行magic_quotes_gpc沒有開啟的情況對提交資料的過濾 } $post = str_replace ( "_", "_", $post ); // 把 '_'過濾掉 $post = str_replace ( "%", "%", $post ); // 把 '%'過濾掉 $post = nl2br ( $post ); // 斷行符號轉換 $post = htmlspecialchars ( $post ); // html標記轉換 return $post; } /* 函數名稱:inject_check() 函數作用:檢測提交的值是不是含有SQL注射的字元,防止注射,保護伺服器安全 參 數:$sql_str: 提交的變數 返 回 值:返回檢測結果,ture or false */ function inject_check($sql_str) { return eregi('select|insert|and|or|update|delete|'|/*|*|../|./|union|into|load_file|outfile', $sql_str); // 進行過濾 } /* 函數名稱:verify_id() 函數作用:校正提交的ID類值是否合法 參 數:$id: 提交的ID值 返 回 值:返回處理後的ID */ function verify_id($id=null) { if (!$id) { exit('沒有提交參數!'); } // 是否為空白判斷 elseif (inject_check($id)) { exit('提交的參數非法!'); } // 注射判斷 elseif (!is_numeric($id)) { exit('提交的參數非法!'); } // 數字判斷 $id = intval($id); // 整型化 return $id; } // $rptype = 0 表示僅替換 html標記 // $rptype = 1 表示替換 html標記同時去除連續空白字元 // $rptype = 2 表示替換 html標記同時去除所有空白字元 // $rptype = -1 表示僅替換 html危險的標記 function HtmlReplace($str, $rptype = 0) { $str = stripslashes ( $str ); if ($rptype == 0) { $str = htmlspecialchars ( $str ); } else if ($rptype == 1) { $str = htmlspecialchars ( $str ); $str = str_replace ( " ", ' ', $str ); $str = ereg_replace ( "[rnt ]{1,}", ' ', $str ); } else if ($rptype == 2) { $str = htmlspecialchars ( $str ); $str = str_replace ( " ", '', $str ); $str = ereg_replace ( "[rnt ]", '', $str ); } else { $str = ereg_replace ( "[rnt ]{1,}", ' ', $str ); $str = eregi_replace ( 'script', 'script', $str ); $str = eregi_replace ( "<[/]{0,1}(link|meta|ifr|fra)[^>]*>", '', $str ); } return addslashes ( $str ); } //遞迴ddslashes function daddslashes($string, $force = 0, $strip = FALSE) { if (! get_magic_quotes_gpc () || $force) { if (is_array ( $string )) { foreach ( $string as $key => $val ) { $string [$key] = daddslashes ( $val, $force ); } } else { $string = addslashes ( $strip ? stripslashes ( $string ) : $string ); } } return $string; } //遞迴stripslashes function dstripslashes($string) { if (is_array ( $string )) { foreach ( $string as $key => $val ) { $string [$key] = $this->dstripslashes ( $val ); } } else { $string = stripslashes ( $string ); } return $string; } /** * 安全過濾函數 * @param $string 要過濾的字串 * @return string 返回處理過的字串 */ function safe_replace($string) { $string = str_replace('%20','',$string); $string = str_replace('%27','',$string); $string = str_replace('%2527','',$string); $string = str_replace('*','',$string); $string = str_replace('"','"',$string); $string = str_replace("'",'',$string); $string = str_replace('"','',$string); $string = str_replace(';','',$string); $string = str_replace('<','<',$string); $string = str_replace('>','>',$string); $string = str_replace("{",'',$string); $string = str_replace('}','',$string); return $string; } /** * 使用htmlspecialchars處理字串或數組 * @param $obj 需要處理的字串或數組 * @return mixed 返回經htmlspecialchars處理過的字串或數組 */ function new_htmlspecialchars($string) { if(!is_array($string)) return htmlspecialchars($string); foreach($string as $key => $val) $string[$key] = new_htmlspecialchars($val); return $string; } //處理禁用HTML但允許換行的內容 function TrimMsg($msg) { $msg = trim ( stripslashes ( $msg ) ); $msg = nl2br ( htmlspecialchars ( $msg ) ); $msg = str_replace ( " ", " ", $msg ); return addslashes ( $msg ); } |