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