> 手机号隐藏中间四位 ``` //自定义函数手机号隐藏中间四位 function yc_phone($str){ $str=$str; $resstr=substr_replace($str,'****',3,4); return $resstr; } ```