What is the best way to validate a credit card in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:15:12Z http://stackoverflow.com/feeds/question/174730 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php 14 What is the best way to validate a credit card in PHP? Joe Lencioni 2008-10-06T15:21:39Z 2009-03-02T18:06:03Z <p>Given a credit card number and no additional information, what is the best way in PHP to determine whether or not it is a valid number?</p> <p>Right now I need something that will work with American Express, Discover, MasterCard, and Visa, but it might be helpful if it will also work with other types.</p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/174738#174738 1 Answer by Chad Moran for What is the best way to validate a credit card in PHP? Chad Moran 2008-10-06T15:23:31Z 2008-10-06T15:23:31Z <p>This is only to make sure that the numbers are valid using some basic RegEX patterns.</p> <p>Note, this does not check to see if the numbers are in-use by someone.</p> <p><a href="http://www.roscripts.com/How_to_validate_credit_card_numbers-106.html" rel="nofollow">http://www.roscripts.com/How_to_validate_credit_card_numbers-106.html</a></p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/174747#174747 3 Answer by Daok for What is the best way to validate a credit card in PHP? Daok 2008-10-06T15:25:10Z 2008-10-06T15:30:21Z <p><strong>PHP Code</strong></p> <pre><code>function validateCC($cc_num, $type) { if($type == "American") { $denum = "American Express"; } elseif($type == "Dinners") { $denum = "Diner's Club"; } elseif($type == "Discover") { $denum = "Discover"; } elseif($type == "Master") { $denum = "Master Card"; } elseif($type == "Visa") { $denum = "Visa"; } if($type == "American") { $pattern = "/^([34|37]{2})([0-9]{13})$/";//American Express if (preg_match($pattern,$cc_num)) { $verified = true; } else { $verified = false; } } elseif($type == "Dinners") { $pattern = "/^([30|36|38]{2})([0-9]{12})$/";//Diner's Club if (preg_match($pattern,$cc_num)) { $verified = true; } else { $verified = false; } } elseif($type == "Discover") { $pattern = "/^([6011]{4})([0-9]{12})$/";//Discover Card if (preg_match($pattern,$cc_num)) { $verified = true; } else { $verified = false; } } elseif($type == "Master") { $pattern = "/^([51|52|53|54|55]{2})([0-9]{14})$/";//Mastercard if (preg_match($pattern,$cc_num)) { $verified = true; } else { $verified = false; } } elseif($type == "Visa") { $pattern = "/^([4]{1})([0-9]{12,15})$/";//Visa if (preg_match($pattern,$cc_num)) { $verified = true; } else { $verified = false; } } if($verified == false) { //Do something here in case the validation fails echo "Credit card invalid. Please make sure that you entered a valid &lt;em&gt;" . $denum . "&lt;/em&gt; credit card "; } else { //if it will pass...do something echo "Your &lt;em&gt;" . $denum . "&lt;/em&gt; credit card is valid"; } } </code></pre> <p>Usage</p> <pre><code>echo validateCC("1738292928284637", "Dinners"); </code></pre> <p><strong>More theoric information can be found here:</strong></p> <p><a href="http://www.beachnet.com/~hstiles/cardtype.html" rel="nofollow">Credit Card Validation - Check Digits</a></p> <p><a href="http://en.wikipedia.org/wiki/Luhn_algorithm" rel="nofollow">Checksum</a></p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/174750#174750 33 Answer by Ray Hayes for What is the best way to validate a credit card in PHP? Ray Hayes 2008-10-06T15:25:26Z 2008-10-06T16:03:11Z <p>There are three parts to the validation of the card number:</p> <ol> <li><strong>PATTERN</strong> - does it match an issuers pattern (e.g. VISA/Mastercard/etc.)</li> <li><strong>CHECKSUM</strong> - does it actually check-sum (e.g. not just 13 random numbers after "34" to make it an AMEX card number)</li> <li><strong>REALLY EXISTS</strong> - does it actually have an associated account (you are unlikely to get this without a merchant account)</li> </ol> <h2>Pattern</h2> <p>There is a description <a href="http://www.beachnet.com/~hstiles/cardtype.html" rel="nofollow">here</a> that describes many card types:</p> <ul> <li>MASTERCARD Prefix=51 or 55, Length=16 (Mod10 checksummed)</li> <li>VISA Prefix=4, Length=13 or 16 (Mod10)</li> <li>AMEX Prefix=34 or 37, Length=15 (Mod10)</li> <li>Diners Club/Carte Prefix=300-305, 36 or 38, Length=14 (Mod10)</li> <li>Discover Prefix=6011, Length=16, (Mod10)</li> <li>etc.</li> </ul> <h2>Checksum</h2> <p>Most cards use the Luhn algorithm for checksums:</p> <p><a href="http://en.wikipedia.org/wiki/Luhn_algorithm" rel="nofollow">Luhn Algorithm described on Wikipedia</a></p> <p>There are links to many implementations on the Wikipedia link, including PHP:</p> <pre><code>&lt;? /* 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&lt;$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 &gt; 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; } ?&gt; </code></pre> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/174759#174759 4 Answer by Dana for What is the best way to validate a credit card in PHP? Dana 2008-10-06T15:27:50Z 2008-10-06T15:27:50Z <p>The <a href="http://en.wikipedia.org/wiki/Luhn_algorithm" rel="nofollow">luhn algorithm</a> is a checksum that can used to validate the format of a lot of credit card formats (and also Canadian social insurance numbers...)</p> <p>The wikipedia article also links to many different implementations; here's a PHP one:</p> <p><a href="http://planzero.org/code/bits/viewcode.php?src=luhn_check.phps" rel="nofollow">http://planzero.org/code/bits/viewcode.php?src=luhn_check.phps</a></p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/174772#174772 4 Answer by ConroyP for What is the best way to validate a credit card in PHP? ConroyP 2008-10-06T15:31:43Z 2008-10-06T15:31:43Z <p>From <a href="http://www.roughguidetophp.com/10-regular-expressions-you-just-cant-live-without-in-php/" rel="nofollow">10 regular expressions you can't live without in PHP</a>:</p> <pre><code>function check_cc($cc, $extra_check = false){ $cards = array( "visa" =&gt; "(4\d{12}(?:\d{3})?)", "amex" =&gt; "(3[47]\d{13})", "jcb" =&gt; "(35[2-8][89]\d\d\d{10})", "maestro" =&gt; "((?:5020|5038|6304|6579|6761)\d{12}(?:\d\d)?)", "solo" =&gt; "((?:6334|6767)\d{12}(?:\d\d)?\d?)", "mastercard" =&gt; "(5[1-5]\d{14})", "switch" =&gt; "(?:(?:(?:4903|4905|4911|4936|6333|6759)\d{12})|(?:(?:564182|633110)\d{10})(\d\d)?\d?)", ); $names = array("Visa", "American Express", "JCB", "Maestro", "Solo", "Mastercard", "Switch"); $matches = array(); $pattern = "#^(?:".implode("|", $cards).")$#"; $result = preg_match($pattern, str_replace(" ", "", $cc), $matches); if($extra_check &amp;&amp; $result &gt; 0){ $result = (validatecard($cc))?1:0; } return ($result&gt;0)?$names[sizeof($matches)-2]:false; } </code></pre> <p>Sample input:</p> <pre><code>$cards = array( "4111 1111 1111 1111", ); foreach($cards as $c){ $check = check_cc($c, true); if($check!==false) echo $c." - ".$check; else echo "$c - Not a match"; echo "&lt;br/&gt;"; } </code></pre> <p>This gives us</p> <pre><code>4111 1111 1111 1111 - Visa </code></pre> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/178117#178117 0 Answer by powtac for What is the best way to validate a credit card in PHP? powtac 2008-10-07T11:56:40Z 2008-10-07T11:56:40Z <p>There is a PEAR package which handles the validation of many financial numbers, also credit card validation: <a href="http://pear.php.net/package/Validate_Finance_CreditCard" rel="nofollow">http://pear.php.net/package/Validate_Finance_CreditCard</a></p> <p>By the way, here are some <a href="http://www.paypal.com/en_US/vhelp/paypalmanager_help/credit_card_numbers.htm" rel="nofollow">Test Credit Card Account Numbers</a> by PayPal.</p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/227126#227126 0 Answer by John for What is the best way to validate a credit card in PHP? John 2008-10-22T19:00:30Z 2008-10-22T19:00:30Z <p>See <a href="http://braemoor.co.uk/software/creditcard.php" rel="nofollow">http://braemoor.co.uk/software/creditcard.php</a> for a downloadable validation routine.</p> http://stackoverflow.com/questions/174730/what-is-the-best-way-to-validate-a-credit-card-in-php/603361#603361 2 Answer by Clayton for What is the best way to validate a credit card in PHP? Clayton 2009-03-02T18:06:03Z 2009-03-02T18:06:03Z <p>It's probably better NOT to validate in code at your end. Send the card info right over to your payment gateway and then deal with their response. It helps them detect fraud if you don't do anything like Luhn checking first -- let them see the failed attempts.</p>