Skip to content

Instantly share code, notes, and snippets.

@arturoleon
Created May 28, 2014 16:50
Show Gist options
  • Save arturoleon/63dc5de543fd01cb9616 to your computer and use it in GitHub Desktop.
Save arturoleon/63dc5de543fd01cb9616 to your computer and use it in GitHub Desktop.
Format an US telephone number
function formatPhone($phone){
return preg_replace('~.*(\d{3})[^\d]*(\d{3})[^\d]*(\d{4})(.*).*~', '($1) $2-$3 $4', $phone). "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment