php隐藏手机号码中间几位数
例如156***8956
function hide_mobile ($num) { $num = substr_replace($num, "****", 3, 4); return $num; }