在中文用戶名時用到。
function replace_specialChar($strParam){
$regex = "/\/|\~|\,|\。|\!|\?|\“|\”|\【|\】
|\『|\』|\:|\;|\《|\》|\’|\‘|\ |\·|\~|\!|\@|\#|\\$
|\%|\^|\&|\*|\(|\)|\_|\+|\{|\}|\:|\<|\>|\?|\[|\]|\,|\.
|\/|\;|\'|\`|\-|\=|\\\|\|/";
return preg_replace($regex,"",$strParam);
}
*