Skip to content

Instantly share code, notes, and snippets.

@dastanaron
Created February 27, 2017 06:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dastanaron/a02418f68f20257a3dacc4a5a347c980 to your computer and use it in GitHub Desktop.
Save dastanaron/a02418f68f20257a3dacc4a5a347c980 to your computer and use it in GitHub Desktop.
MobilePhoneFormatExample
<?php
function FormatMobilePhone($phone) {
return preg_replace('#(\d{1})(\d{3})(\d{3})(\d{2})(\d{2})#Us', '+$1 ($2) $3-$4-$5', $phone);
}
$phone = "79154401700";
echo FormatMobilePhone($phone);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment