隱藏方法:1、用「substr_replace($str,str_repeat("*",6), -6)」語句,可隱藏後6位元;2、用「substr_replace($str,str_repeat( "*",6),6,6)」語句,可隱藏中間6位元。
本教學操作環境:windows7系統、PHP7.1版、DELL G3電腦
在PHP中,可以使用substr_replace()函數和substr_replace() 函數來隱藏身分證號並將隱藏的數字替換成星號。
1、隱藏後6位身分證號碼
<?php header("Content-type:text/html;charset=utf-8"); $str = "371515111111116042"; echo substr_replace($str,str_repeat("*",6),-6); ?>
#2、隱藏中間6位身分證號
<?php header("Content-type:text/html;charset=utf-8"); $str = "371515111111116042"; echo substr_replace($str,str_repeat("*",6),6,6); ?>
3、隱藏前6位身分證號碼
<?php header("Content-type:text/html;charset=utf-8"); $str = "371515111111116042"; echo substr_replace($str,str_repeat("*",6),0,6); ?>
說明:
substr_replace() 函數把字串的一部分替換為另一個字串;會從指定位置開始替換指定長度的字串。
str_repeat() 函數把字串重複指定的次數。
上例中,就是將星號「*」字元重複指定次數(和需要隱藏的位數一致),將該生產的子字串作為替換值,替換掉字串中一部分。
推薦學習:《PHP影片教學》
以上是php怎麼隱藏6位身分證號的詳細內容。更多資訊請關注PHP中文網其他相關文章!