Skip to content

Instantly share code, notes, and snippets.

View littlebookboy's full-sized avatar

Gene Su littlebookboy

View GitHub Profile
@littlebookboy
littlebookboy / remove_emoji.php
Created December 4, 2018 10:52
移除 emoji 測試
<?php
function filterEmoji ($string) {
return preg_replace_callback(
'/./u',
function (array $match) {
return strlen($match[0]) >= 4 ? '' : $match[0];
},
$string
);
}