>  기사  >  백엔드 개발  >  WeChat 닉네임 특수 기호 필터링을 처리하는 PHP 방법

WeChat 닉네임 특수 기호 필터링을 처리하는 PHP 방법

coldplay.xixi
coldplay.xixi앞으로
2020-07-06 16:07:403567검색

WeChat 닉네임 특수 기호 필터링을 처리하는 PHP 방법

PHP를 통해 WeChat 닉네임을 얻어 데이터베이스에 저장할 때 일부 닉네임에는 특수 기호가 있기 때문에 저장할 수 없습니다. 다음과 같은 방법으로 처리할 수 있습니다.

방법 2

protected function removeEmoji($clean_text) {

    // Match Emoticons
    $regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u';
    $clean_text = preg_replace($regexEmoticons, '', $clean_text);

    // Match Miscellaneous Symbols and Pictographs
    $regexSymbols = '/[\x{1F300}-\x{1F5FF}]/u';
    $clean_text = preg_replace($regexSymbols, '', $clean_text);

    // Match Transport And Map Symbols
    $regexTransport = '/[\x{1F680}-\x{1F6FF}]/u';
    $clean_text = preg_replace($regexTransport, '', $clean_text);

    // Match Miscellaneous Symbols
    $regexMisc = '/[\x{2600}-\x{26FF}]/u';
    $clean_text = preg_replace($regexMisc, '', $clean_text);

    // Match Dingbats
    $regexDingbats = '/[\x{2700}-\x{27BF}]/u';
    $clean_text = preg_replace($regexDingbats, '', $clean_text);

    return $clean_text;
}

방법 2

preg_replace("/[\x{1F600}-\x{1F64F}\x{1F300}-\x{1F5FF}\x{1F680}-\x{1F6FF}\x{2600}-\x{26FF}\x{2700}-\x{27BF}]/u","","这里是昵称")

방법 3

// 过滤掉emoji表情
function filterEmoji($str){
  $str = preg_replace_callback( '/./u',
      function (array $match) {
        return strlen($match[0]) >= 4 ? '' : $match[0];
      },
      $str);
   return $str;
}

관련 학습 권장사항: 초보부터 마스터까지 PHP 프로그래밍

위 내용은 WeChat 닉네임 특수 기호 필터링을 처리하는 PHP 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 liqingbo.cn에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제