<?php $phone = '15738885555'; //方法一(字符串截取) echo substr($phone, 0, 3).'****'.substr($phone, 7); //方法二(推荐,系统函数) echo substr_replace($phone, '****', 3, 4); //方法三 (正则,不推荐) echo preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $phone);
输出结果,均为:157****5555.