我有一个仅包含数字的 16 位文本。我有一个 PHP 变量,例如: $example['example'] 我希望这个变量只有前 6 位和最后 4 位可见,其他的将被替换为星号。已解决https://i.stack.imgur.com/C5ZPF.png
1 回答
神不在的星期二
TA贡献1963条经验 获得超6个赞
使用 str_replace 函数变得简单
$example="1234567890123456";
$replace=str_replace(substr($example,6,6),str_repeat('*',6),$example);
echo "$replace";
- 1 回答
- 0 关注
- 96 浏览
添加回答
举报
0/150
提交
取消