2
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.

Laravel とPHP TipsAdvent Calendar 2023

Day 20

Str::mask()で個人情報を隠そう!!

Posted at

概要

メールアドレスとか、全部表示したくない時、ありますよね?
うってつけなヘルパがあります!

Str::mask()

$email = 'example@example.com';
//16文字後ろに下がった所から4文字目までを「*」でマスク
$maskMail = Str::mask($email,'*',-16,4);
dd($maskMail);

// 結果:
//"exa****@example.com"

これでよくある一定数文字以降を「*」表示させられます!!

参考

2
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
2
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?