1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHP 絵文字を削除

Posted at

用途

PHPで絵文字を削除したいときに使う。
データベースに絵文字を保存したくない時などに、あらかじめ値から絵文字を削除したい時などに使う。

4バイトの絵文字を削除するものです。(3バイトの絵文字は今回のコードでは削除できません)

使用方法

4バイトの絵文字を削除
preg_replace('/[\xF0-\xF7][\x80-\xBF][\x80-\xBF][\x80-\xBF]/', '', $hoge);

第1引数 → 4バイトの絵文字の正規表現
第2引数 → 空にするためにクオーテーションのみ
第3引数 → 対象の値

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?