Skip to content

Instantly share code, notes, and snippets.

@williameliel
Created June 12, 2014 15:16
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save williameliel/cb0ab92f4803c35c78d9 to your computer and use it in GitHub Desktop.
Save williameliel/cb0ab92f4803c35c78d9 to your computer and use it in GitHub Desktop.
Remove Emojis from Instagram/Twitter/Facebook API responses
function remove_emoji($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;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment