인생이 쓰다!인생쓰

개발/PHP

문자열 별표 표시 (아이디, 이메일)

Johnal 2020. 4. 29. 11:06
반응형

아이디와 이메일 별표 표시해주기 

1
2
3
4
5
6
7
            <tr>
                <td><?=preg_replace('/(?<=.{3})./u','*',$data['Id']);?></td>
              <?        $mail_part = explode("@", $data['Email']);
                        $mail_part[0] = preg_replace('/(?<=.{3})./u','*',$mail_part[0]);  
                        $mail_part[1] = preg_replace('/(?<=.{3})./u','*',$mail_part[1]);  
              ?><td><?= implode("@", $mail_part);?></td>
            </tr>

 

*결과 

 

728x90
반응형

'개발 > PHP' 카테고리의 다른 글

phpMyAdmin 내보내기 한글 깨짐 현상  (0) 2021.07.22
Get값 특수문자 변경  (0) 2020.02.28