Dùng ở Back-End
Tự động nhận diện ra số điện thoại tự động thay đổi 3 số cuối thì dùng Regex
1 2 3 4 5 6 |
preg_match_all('/(09|01[2|6|8|9]|0[3|7|5|8])+([0-9]{8})/m', $string, $phones); if($phones && isset($phones[0][0])){ foreach($phones[0] as $phone){ $string= str_replace($phone, substr($phone, 0, -3) . '***', $string); } } |
Nếu muốn dùng ở Front-end
HTML:
1 |
<div class="hide-phone-number">0123456790</div> |
1 2 3 4 5 6 7 8 9 10 |
.hide-phone-number { display: inline-block; position: relative; } .hide-phone-number::after { content: "***"; background: white; position: absolute; right: 0; } |