码迷,mamicode.com
首页 > 其他好文 > 详细

替换身份证中的数字为星号(*******)代替

时间:2015-07-29 17:07:15      阅读:967      评论:0      收藏:0      [点我收藏+]

标签:

<?php
//替换身份证中的数字为星号(*******)代替
    function replace_id_numbers($id_number){
        try{
            if(!$id_number){
                E(未能获取到身份证的信息!);
            }
            $get_replace_str=substr($id_number,4,10);
            $a="**********";
            return str_replace("$get_replace_str",$a,"$id_number");
            //return $get_replace_str;
        }catch(Exception $e){
            throw $e;
        }
    }
?>

 

替换身份证中的数字为星号(*******)代替

标签:

原文地址:http://www.cnblogs.com/719907411hl/p/4686435.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!