show/hide this revision's text 4 added 14 characters in body

There are three parts to the validation of the card number:

  1. PATTERN - does it match an issuers pattern (e.g. VISA/Mastercard/etc.)
  2. CHECKSUM - does it actually check-sum (e.g. not just 13 random numbers after "34" to make it an AMEX card number)
  3. REALLY EXISTS - does it actually have an associated account (you are unlikely to get this without a merchant account)

Pattern

There is a description here that describes many card types:

  • MASTERCARD Prefix=51 or 55, Length=16 (Mod10 checksummed)
  • VISA Prefix=4, Length=13 or 16 (Mod10 checksummed)Mod10)
  • AMEX Prefix=34 or 37, Length=15 (Mod10 checksummed)Mod10)
  • Diners Club/Carte Prefix=300-305, 36 or 38, Length=14 (Mod10 checksummed)Mod10)
  • Discover Prefix=6011, Length=16, (Mod10)
  • etc.

Checksum

Most cards use the Luhn algorithm for checksums:

Luhn Algorithm described on Wikipedia

There are links to many implementations on the Wikipedia link, including PHP:

<?
/* Luhn algorithm number checker - (c) 2005-2008 shaman - www.planzero.org *
 * This code has been released into the public domain, however please      *
 * give credit to the original author where possible.                      */

function luhn_check($number) {

  // Strip any non-digits (useful for credit card numbers with spaces and hyphens)
  $number=preg_replace('/\D/', '', $number);

  // Set the string length and parity
  $number_length=strlen($number);
  $parity=$number_length % 2;

  // Loop through each digit and do the maths
  $total=0;
  for ($i=0; $i<$number_length; $i++) {
    $digit=$number[$i];
    // Multiply alternate digits by two
    if ($i % 2 == $parity) {
      $digit*=2;
      // If the sum is two digits, add them together (in effect)
      if ($digit > 9) {
        $digit-=9;
      }
    }
    // Total up the digits
    $total+=$digit;
  }

  // If the total mod 10 equals 0, the number is valid
  return ($total % 10 == 0) ? TRUE : FALSE;

}
?>
show/hide this revision's text 3 added 172 characters in body

There are three parts to the validation of the card number:

  1. PATTERN - does it match an issuers pattern (e.g. VISA/Mastercard/etc.)
  2. CHECKSUM - does it actually check-sum (e.g. not just 13 random numbers after "34" to make it an AMEX card number)
  3. REALLY EXISTS - does it actually have an associated account (you are unlikely to get this without a merchant account)

Pattern

There is a description here that describes many card types:

  • MASTERCARD Prefix=51 or 55, Length=16 (Mod10 checksummed)
  • VISA Prefix=4, Length=13 or 16 (Mod10 checksummed)
  • AMEX Prefix=34 or 37, Length=15 (Mod10 checksummed)
  • Diners Club/Carte
  • Blanche Discover Prefix=300-305, 36 or 38, Length=14 (Mod10 checksummed)
  • etc.

Checksum

Most cards use the Luhn algorithm for checksums:

Luhn Algorithm described on Wikipedia

There are links to many implementations on the Wikipedia link, including PHP:

<?
/* Luhn algorithm number checker - (c) 2005-2008 shaman - www.planzero.org *
 * This code has been released into the public domain, however please      *
 * give credit to the original author where possible.                      */

function luhn_check($number) {

  // Strip any non-digits (useful for credit card numbers with spaces and hyphens)
  $number=preg_replace('/\D/', '', $number);

  // Set the string length and parity
  $number_length=strlen($number);
  $parity=$number_length % 2;

  // Loop through each digit and do the maths
  $total=0;
  for ($i=0; $i<$number_length; $i++) {
    $digit=$number[$i];
    // Multiply alternate digits by two
    if ($i % 2 == $parity) {
      $digit*=2;
      // If the sum is two digits, add them together (in effect)
      if ($digit > 9) {
        $digit-=9;
      }
    }
    // Total up the digits
    $total+=$digit;
  }

  // If the total mod 10 equals 0, the number is valid
  return ($total % 10 == 0) ? TRUE : FALSE;

}
?>
show/hide this revision's text 2 added 498 characters in body

There are three parts to the validation of the card number:

  • PATTERN - does it match an issuers pattern (e.g. VISA/Mastercard/etc.)
  • CHECKSUM - does it actually check-sum (e.g. not just 13 random numbers after "34" to make it an AMEX card number)
  • REALLY EXISTS - does it actually have an associated account (you are unlikely to get this without a merchant account)
  • Pattern

    There is a description here that describes many card types:

    Checksum

    There are links to many implementations on the Wikipedia link:

    * Luhn validation code in Actionscript2, with generation code* Luhn validation code in C* Luhn validation code in C#* Luhn validation code in VB.Net and C# with Card Identification* Luhn validation code in ColdFusion* Luhn validation code in Common Lisp* Luhn validation code in Java* Luhn validation code in Java, with test cases* Luhn validation code in JavaScript, with test page* Luhn validation code in MS Excel* Luhn validation code in MySQL* Luhn validation code in Perl* Luhn validation code in Perl* Luhn validation code in PowerShell* Luhn validation code in including PHP* Luhn validation code in Python/* Luhn validation code in Python, as a libraryalgorithm number checker - (c) 2005-2008 shaman - www.planzero.org * Luhn validation code in Ruby* Luhn validation This code in Rubyhas been released into the public domain, with card type checkhowever please      * Luhn validation code in Scheme* Luhn validation code in Transact-SQLgive credit to the original author where possible.                      *Alternative validation technique /function luhn_check($number) {  // Strip any non-digits (useful for credit card numbers with spaces and hyphens)  $number=preg_replace('/\D/', '', $number);  // Set the string length and parity  $number_length=strlen($number);  $parity=$number_length % 2;  // Loop through each digit and do the maths  $total=0;  for ($i=0; $i<$number_length; $i++) {    $digit=$number[$i];    // Multiply alternate digits by two    if ($i % 2 == $parity) {      $digit*=2;      // If the sum is two digits, add them together (in Ceffect)      if ($digit > 9) {        $digit-=9;    // Total up the digits    $total+=$digit;  // If the total mod 10 equals 0, awk and Pythonthe number is valid  return ($total % 10 == 0) ? TRUE : FALSE;
            
    show/hide this revision's text 1