- /**
- * 函數(shù)名稱:post_check()
- * 函數(shù)作用:對提交的編輯內容進行處理
- * 參 數(shù):$post: 要提交的內容
- * 返 回 值:$post: 返回過濾后的內容
- */
- function post_check($post){
- if(!get_magic_quotes_gpc()){// 判斷magic_quotes_gpc是否為打開
- $post = addslashes($post);// 進行magic_quotes_gpc沒有打開的情況對提交數(shù)據的過濾
- }
- $post = str_replace("_","\_", $post);// 把 '_'過濾掉
- $post = str_replace("%","\%", $post);// 把 '%'過濾掉
- $post = nl2br($post);// 回車轉換
- $post = htmlspecialchars($post);// html標記轉換
- return $post;
- }
|