Answers for "how to mask phone number in php"

PHP
1

how to mask phone number in php

$data = '+11234567890';

if(  preg_match( '/^\+\d(\d{3})(\d{3})(\d{4})$/', $data,  $matches ) )
{
    $result = $matches[1] . '-' .$matches[2] . '-' . $matches[3];
    return $result;
}
Posted by: Guest on June-29-2020

Browse Popular Code Answers by Language