如何巧妙隐藏身份证号中的6位数字以保护隐私?
- 内容介绍
- 文章标签
- 相关推荐
本文共计440个文字,预计阅读时间需要2分钟。
隐藏方法:1. 使用substr_replace($str, str_repeat('*', 6), -6)语句,可隐藏后6位;2. 使用substr_replace($str, str_repeat('*', 6), 6, 6)语句,可隐藏中间6位。本教程操作环境:Windows 7系统、PHP 7.1版、DELL G系列。
隐藏方法: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() 函数来隐藏身份证号并将隐藏的数字替换成星号。
本文共计440个文字,预计阅读时间需要2分钟。
隐藏方法:1. 使用substr_replace($str, str_repeat('*', 6), -6)语句,可隐藏后6位;2. 使用substr_replace($str, str_repeat('*', 6), 6, 6)语句,可隐藏中间6位。本教程操作环境:Windows 7系统、PHP 7.1版、DELL G系列。
隐藏方法: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() 函数来隐藏身份证号并将隐藏的数字替换成星号。

