php屏蔽电话号码中间四位
substr_replace函数
用正则方法,支持手机和固定电话$str = substr_replace("13866778888",'****',3,4);
function hidtel($phone){ $IsWhat = preg_match('/(0[0-9]{2,3}[\-]?[2-9][0-9]{6,7}[\-]?[0-9]?)/i',$phone); //固定电话 if($IsWhat == 1){ return preg_replace('/(0[0-9]{2,3}[\-]?[2-9])[0-9]{3,4}([0-9]{3}[\-]?[0-9]?)/i','$1****$2',$phone); }else{ return preg_replace('/(1[358]{1}[0-9])[0-9]{4}([0-9]{4})/i','$1****$2',$phone); } } hidtel("13866778888");
码字很辛苦,转载请注明来自NAERENET的《php屏蔽电话号码中间四位》
2021-10-20 16:55:37 字符处理