01 2021 档案
摘要:function strFilter($str){ $str = str_replace('`', '', $str); $str = str_replace('·', '', $str); $str = str_replace('~', '', $str); $str = str_replace(
阅读全文
摘要:function filterChars($chars){ if(is_array($chars)){ foreach($chars as &$value){ if(is_string($value)){ $value = htmlspecialchars($value); } } }else if
阅读全文