微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

用PHP验证信用卡的最佳方法是什么?

如何解决用PHP验证信用卡的最佳方法是什么?

卡号验证分为三个部分:

  1. -是否与发行者模式(例如VISA /万事达卡等)匹配
  2. 它是否实际进行校验和(例如,将“ 34”后面的13个随机数字用作美国运通卡号)
  3. -它实际上有一个相关的帐户(你不可能得到这个没有商家帐户)

图案

  • MASTERCARD前缀= 51-55,长度= 16(Mod10校验和)
  • VISA前缀= 4,长度= 13或16(Mod10)
  • AMEX前缀= 34或37,长度= 15(Mod10)
  • 大来俱乐部/卡位前缀= 300-305、36或38,长度= 14(Mod10)
  • 发现前缀= 6011,622126-622925,644-649,65,长度= 16,(Mod10)
  • 等(前缀的详细列表

校验和

大多数卡将Luhn算法用于校验和:

维基百科上描述的Luhn算法

Wikipedia链接上有许多实现的链接包括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;

}
?>

解决方法

在没有信用卡号且没有其他信息的情况下,PHP中确定该号码是否为有效号码的最佳方法是什么?

现在,我需要可以与American
Express,Discover,MasterCard和Visa一起使用的功能,但是如果它也可以与其他类型的功能一起使用,可能会有所帮助。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。