Skip to content

Instantly share code, notes, and snippets.

@GiancarloGomez
Last active September 7, 2016 05:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GiancarloGomez/e62928a665ef796464137bafc6cb20ec to your computer and use it in GitHub Desktop.
Save GiancarloGomez/e62928a665ef796464137bafc6cb20ec to your computer and use it in GitHub Desktop.
<?php
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);
return $clean_text;
}
echo isset($_POST['value']) ? removeEmoji($_POST['value']) : '';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment