PHP随机生成信用卡卡号的方法


Posted in PHP onMarch 23, 2015

本文实例讲述了PHP随机生成信用卡卡号的方法。分享给大家供大家参考。具体分析如下:

这段PHP代码根据信用卡卡号产生规则随机生成信用卡卡号,是可以通过验证的,仅供学习参考,请不要用于非法用途,否则后果自负。

<?php
/*
PHP credit card number generator
Copyright (C) 2006 Graham King graham@darkcoding.net
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
$visaPrefixList[] = "4539";
$visaPrefixList[] = "4556";
$visaPrefixList[] = "4916";
$visaPrefixList[] = "4532";
$visaPrefixList[] = "4929";
$visaPrefixList[] = "40240071";
$visaPrefixList[] = "4485";
$visaPrefixList[] = "4716";
$visaPrefixList[] = "4";
$mastercardPrefixList[] = "51";
$mastercardPrefixList[] = "52";
$mastercardPrefixList[] = "53";
$mastercardPrefixList[] = "54";
$mastercardPrefixList[] = "55";
$amexPrefixList[] = "34";
$amexPrefixList[] = "37";
$discoverPrefixList[] = "6011";
$dinersPrefixList[] = "300";
$dinersPrefixList[] = "301";
$dinersPrefixList[] = "302";
$dinersPrefixList[] = "303";
$dinersPrefixList[] = "36";
$dinersPrefixList[] = "38";
$enRoutePrefixList[] = "2014";
$enRoutePrefixList[] = "2149";
$jcbPrefixList[] = "35";
$voyagerPrefixList[] = "8699";
/*
'prefix' is the start of the CC number as a string, any number of digits.
'length' is the length of the CC number to generate. Typically 13 or 16
*/
function completed_number($prefix, $length) {
  $ccnumber = $prefix;
  # generate digits
  while ( strlen($ccnumber) < ($length - 1) ) {
    $ccnumber .= rand(0,9);
  }
  # Calculate sum
  $sum = 0;
  $pos = 0;
  $reversedCCnumber = strrev( $ccnumber );
  while ( $pos < $length - 1 ) {
    $odd = $reversedCCnumber[ $pos ] * 2;
    if ( $odd > 9 ) {
      $odd -= 9;
    }
    $sum += $odd;
    if ( $pos != ($length - 2) ) {
      $sum += $reversedCCnumber[ $pos +1 ];
    }
    $pos += 2;
  }
  # Calculate check digit
  $checkdigit = (( floor($sum/10) + 1) * 10 - $sum) % 10;
  $ccnumber .= $checkdigit;
  return $ccnumber;
}
function credit_card_number($prefixList, $length, $howMany) {
  for ($i = 0; $i < $howMany; $i++) {
    $ccnumber = $prefixList[ array_rand($prefixList) ];
    $result[] = completed_number($ccnumber, $length);
  }
  return $result;
}
function output($title, $numbers) {
  $result[] = "<div class='creditCardNumbers'>";
  $result[] = "<h3>$title</h3>";
  $result[] = implode('<br />', $numbers);
  $result[]= '</div>';
  return implode('<br />', $result);
}
#
# Main
#
echo "<div class='creditCardSet'>";
$mastercard = credit_card_number($mastercardPrefixList, 16, 10);
echo output("Mastercard", $mastercard);
$visa16 = credit_card_number($visaPrefixList, 16, 10);
echo output("VISA 16 digit", $visa16);
echo "</div>";
echo "<div class='creditCardSet'>";
$visa13 = credit_card_number($visaPrefixList, 13, 5);
echo output("VISA 13 digit", $visa13);
$amex = credit_card_number($amexPrefixList, 15, 5);
echo output("American Express", $amex);
echo "</div>";
# Minor cards
echo "<div class='creditCardSet'>";
$discover = credit_card_number($discoverPrefixList, 16, 3);
echo output("Discover", $discover);
$diners = credit_card_number($dinersPrefixList, 14, 3);
echo output("Diners Club", $diners);
echo "</div>";
echo "<div class='creditCardSet'>";
$enRoute = credit_card_number($enRoutePrefixList, 15, 3);
echo output("enRoute", $enRoute);
$jcb = credit_card_number($jcbPrefixList, 16, 3);
echo output("JCB", $jcb);
echo "</div>";
echo "<div class='creditCardSet'>";
$voyager = credit_card_number($voyagerPrefixList, 15, 3);
echo output("Voyager", $voyager);
echo "</div>";
?>

希望本文所述对大家的php程序设计有所帮助。

PHP 相关文章推荐
php 什么是PEAR?
Mar 19 PHP
mcrypt启用 加密以及解密过程详细解析
Aug 07 PHP
php检查字符串中是否有外链的方法
Jul 29 PHP
WordPress中使主题支持小工具以及添加插件启用函数
Dec 22 PHP
PHP读MYSQL中文乱码的快速解决方法
Oct 01 PHP
php is_writable判断文件是否可写实例代码
Oct 13 PHP
php curl 模拟登录并获取数据实例详解
Dec 22 PHP
php数组指针操作详解
Feb 14 PHP
php之可变变量的实例详解
Sep 12 PHP
在Laravel的Model层做数据缓存的实现
Sep 26 PHP
Laravel 在views中加载公共页面的实现代码
Oct 22 PHP
PHP7 foreach() 函数修改
Mar 09 PHP
PHP实现通过Luhn算法校验信用卡卡号是否有效
Mar 23 #PHP
php实现Mongodb自定义方式生成自增ID的方法
Mar 23 #PHP
php实现约瑟夫问题的方法小结
Mar 23 #PHP
php约瑟夫问题解决关于处死犯人的算法
Mar 23 #PHP
PHP贪婪算法解决0-1背包问题实例分析
Mar 23 #PHP
PHP回溯法解决0-1背包问题实例分析
Mar 23 #PHP
PHP动态规划解决0-1背包问题实例分析
Mar 23 #PHP
You might like
PHPLog php 程序调试追踪工具
2009/09/09 PHP
详解php的socket通信
2015/08/11 PHP
php微信公众号开发(3)php实现简单微信文本通讯
2016/12/15 PHP
解决Laravel5.2 Auth认证退出失效的问题
2019/10/14 PHP
JS BASE64编码 window.atob(), window.btoa()
2021/03/09 Javascript
prototype 学习笔记整理
2009/07/17 Javascript
Javascript创建Silverlight Plugin以及自定义nonSilverlight和lowSilverlight样式
2010/06/28 Javascript
使用Web Uploader实现多文件上传
2016/06/08 Javascript
第一次接触神奇的Bootstrap
2016/10/14 Javascript
JavaScript中 DOM操作方法小结
2017/04/25 Javascript
Bootstrap Table使用整理(五)之分页组合查询
2017/06/09 Javascript
如何在JavaScript中谨慎使用代码注释
2019/06/21 Javascript
el-input 标签中密码的显示和隐藏功能的实例代码
2019/07/19 Javascript
Vue3 响应式侦听与计算的实现
2020/11/11 Javascript
[46:20]TFT vs Secret Supermajor小组赛C组 BO3 第二场 6.3
2018/06/04 DOTA
机器学习python实战之手写数字识别
2017/11/01 Python
Python实现判断字符串中包含某个字符的判断函数示例
2018/01/08 Python
Python要如何实现列表排序的几种方法
2020/02/21 Python
matplotlib 对坐标的控制,加图例注释的操作
2020/04/17 Python
python爬虫快速响应服务器的做法
2020/11/24 Python
html5中监听canvas内部元素点击事件的三种方法
2019/04/28 HTML / CSS
Shopee越南:东南亚与台湾电商平台
2019/02/03 全球购物
英国历史最悠久的DJ设备供应商:DJ Finance、DJ Warehouse、The DJ Shop
2019/09/04 全球购物
如何进行Linux分区优化
2016/09/13 面试题
你所在的项目是如何确定版本号的
2015/12/28 面试题
测绘工程本科生求职信
2013/10/10 职场文书
日语系毕业生推荐信
2013/11/11 职场文书
财务会计专业个人求职信范本
2014/01/08 职场文书
一句话工作感言
2014/03/01 职场文书
经典的毕业生自荐信范文
2014/04/14 职场文书
个人创业事迹材料
2014/12/30 职场文书
2015年员工工作表现评语
2015/03/25 职场文书
党小组评议意见
2015/06/02 职场文书
边城读书笔记
2015/06/29 职场文书
《没有任何借口》读后感:完美的执行能力
2020/01/07 职场文书
Python+Appium实现自动抢微信红包
2021/05/21 Python