Skip to content

Instantly share code, notes, and snippets.

@cam-gists
Created August 20, 2012 16:01
Show Gist options
  • Select an option

  • Save cam-gists/3405375 to your computer and use it in GitHub Desktop.

Select an option

Save cam-gists/3405375 to your computer and use it in GitHub Desktop.
PHP: US Phone # validation
<?php
// simple phone number
$phone_number_as_integer = preg_replace("/[^0-9]/", "", $phone);
if( !preg_match("/^()?[0-9]{3}[0-9]{3}[0-9]{4}$/i", $phone_number_as_integer) )
{
$phone_error = 'Please enter a valid phone number.';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment