How to Write a Basic Function in PHP to Remove Emojis from Text?

Susan Sarandon
Release: 2024-10-27 04:22:03
Original
173 people have browsed it

How to Write a Basic Function in PHP to Remove Emojis from Text?

Writing a Simple removeEmoji Function in PHP

Processing online text often requires the removal of emojis, particularly in cases like Instagram comments. This article explores a solution for such a need, utilizing the PHP preg_replace function to effectively eliminate emojis from a given text.

The removeEmoji function utilizes a series of regular expressions to match and remove emojis from the input text. Each expression targets specific unicode ranges that represent various categories of emojis, including emoticons, symbols, transport symbols, dingbats, and more.

Here's an example of the function:

<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>
Copy after login

Note that this function does not exhaustively remove all emojis, as there are numerous variations. However, it provides a comprehensive solution for most common cases.

The above is the detailed content of How to Write a Basic Function in PHP to Remove Emojis from Text?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!