PHP (外掛)密碼轉為星字號(*)
外掛說明:
$num 參數,要將多少字轉為星字號。
substr(string,star,length) 函式,取得部分字串。string:字串,star:從第幾個字元開始,length:取得字元的長度。
strlen(string) 函式,取得字串數量。
程式碼如下:
<?php
/*密碼轉換成星字號(*)*/
function getStar($num)
{
while($i<$num){
$str.='*';
$i++;
}
return $str;
}
$userRecipher=123456;
echo substr($userRecipher,0,3).getStar(strlen(substr($userRecipher,3)));
?>
執行結果如下圖:
參考或是複製語法時,別忘了留個言喔 ^ ^ ~