public function blur_phone_number($phoneNum) { $head = substr($phoneNum, 0, 3); $tail = substr($phoneNum, -4, 4); return ($head.'****'.$tail); }