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

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

coldplay.xixi
풀어 주다: 2023-04-09 06:54:01
앞으로
3629명이 탐색했습니다.

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으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿