PHP: 간단한 RemoveEmoji 함수 작성
질문:
어떻게 만들 수 있나요? PHP를 사용하여 Instagram 댓글에서 이모티콘 문자를 제거하는 간단한 기능이 있습니까?
제안된 구현:
<code class="php">public static function removeEmoji($string) { // split the string into UTF8 char array // for loop inside char array // if char is emoji, remove it // endfor // return newstring }</code>
권장 솔루션:
제안된 구현에서는 루프를 활용하여 이모티콘을 식별하고 제거하지만 preg_replace 함수를 사용하는 보다 효율적인 솔루션이 있습니다.
<code class="php">public static function removeEmoji($text) { $clean_text = ""; // Match Emoticons $regexEmoticons = '/[\x{1F600}-\x{1F64F}]/u'; $clean_text = preg_replace($regexEmoticons, '', $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; }</code>
이 함수는 특정 유니코드 범위를 대상으로 하여 입력 텍스트에서 이모티콘을 식별하고 제거합니다. 추가 이모티콘 문자 범위는 unicode.org - 전체 이모티콘 목록을 참조하세요.
위 내용은 PHP의 Instagram 댓글에서 이모티콘 문자를 효율적으로 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!