手机号中间四位转*号
Posted 头大的冯冯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了手机号中间四位转*号相关的知识,希望对你有一定的参考价值。
/** * 手机号中间四位转*号 * @param $tel 手机号码 * @return mixed */ public function mobile_change($tel){ $str = substr($tel,0,3); $strs = substr($tel,0,4); if ($str == ‘+86‘){ $tel_sub = substr($tel,3,11); }elseif ($strs == ‘+852‘ || $strs == ‘+853‘ || $strs == ‘+886‘){ $tel_sub = substr($tel,4,11); } return substr_replace($tel_sub, ‘****‘, 3, 4); }
以上是关于手机号中间四位转*号的主要内容,如果未能解决你的问题,请参考以下文章