Skip to content

Instantly share code, notes, and snippets.

@omerm80
omerm80 / remove emojis
Created March 3, 2018 21:30 — forked from fearless-spider/remove emojis
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';