PHP:利用 preg_replace 刪除表情符號
正在尋找一種簡單的方法來從 Instagram 評論中刪除表情符號? preg_replace 提供了一個簡化的解決方案。
preg_replace 的使用
Enter ofCode 建議參考 wiki 以深入了解表情符號刪除。避免先前無效的SO 答案的麻煩,並為Instagram 照片標題使用自訂正規表示式:
<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>
注意:雖然此功能涵蓋了廣泛的表情符號,但它可能無法捕捉到由於可用的表情符號數量眾多,因此出現了各種變化。有關表情符號的完整列表,請參閱 unicode.org。
以上是如何在 PHP 中使用 preg_replace 有效地從 Instagram 評論中刪除表情符號?的詳細內容。更多資訊請關注PHP中文網其他相關文章!