信用卡处理示例

发布于 2024-10-24 22:53:12 字数 101 浏览 0 评论 0原文

任何人都可以引导我到一个地方,在那里我可以找到使用 mySql 和 PHP 的信用卡处理系统的模拟实现吗???只是想使用一些示例信用卡号码等来检查系统是如何工作的。

谢谢。

Can anyone direct me to a place where I can find a mock implementation of Credit Card processing system, using mySql and PHP??? Just want to check out how the system works, using some sample credit card numbers and stuff.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柒夜笙歌凉 2024-10-31 22:53:12

每个实现都有一些特定的示例卡。比如 Paypal 或 google Checkout。除此之外,每个 CC 公司都有自己的。

  • 美国运通,3400 0000 0000 009
  • Carte Blanche,3000 0000 0000 04
  • Discover,6011 0000 0000 0004
  • Diner's Club,3000 0000 0000 04
  • enRoute,2014 0000 0000 009
  • JCB,2131 0000 0000 0008
  • 万事达卡,5500 0000 0000 0004
  • 独奏,6334 0000 0000 0004
  • Switch,4903 0100 0000 0009
  • Visa,4111 1111 1111 1111

Paypal:

  • 美国运通,378282246310005
  • 美国运通,371449635398431
  • 美国运通公司,378734493671000
  • 澳大利亚银行卡,5610591 081018250
  • 大来俱乐部, 30569309025904
  • 大来俱乐部, 38520000023237
  • 发现, 6011111111111117
  • 发现, 6011000990139424
  • JCB, 3530111333300000
  • JCB , 3566002020360505
  • 万事达卡, 5555555555554444
  • 万事达卡, 5105105105105100
  • 维萨卡, 4111111111111111
  • 维萨卡, 40128888888881881
  • 维萨卡, 4222222222222
    (注意:尽管该号码的字符数与其他测试号码不同,但它是正确且有效的号码。)

处理器特定卡

  • Dankort (PBS)、76009244561
  • Dankort (PBS)、5019717010103742
  • Switch/Solo (Paymenttech)、 6331101999990016

Google 结账测试卡

Each implementation has some specific sample cards. Like Paypal or google Checkout. Apart of this each CC company has its own.

  • American Express, 3400 0000 0000 009
  • Carte Blanche, 3000 0000 0000 04
  • Discover, 6011 0000 0000 0004
  • Diner's Club, 3000 0000 0000 04
  • enRoute, 2014 0000 0000 009
  • JCB, 2131 0000 0000 0008
  • MasterCard, 5500 0000 0000 0004
  • Solo, 6334 0000 0000 0004
  • Switch, 4903 0100 0000 0009
  • Visa, 4111 1111 1111 1111

Paypal:

  • American Express, 378282246310005
  • American Express, 371449635398431
  • American Express Corporate, 378734493671000
  • Australian BankCard, 5610591081018250
  • Diners Club, 30569309025904
  • Diners Club, 38520000023237
  • Discover, 6011111111111117
  • Discover, 6011000990139424
  • JCB, 3530111333300000
  • JCB, 3566002020360505
  • MasterCard, 5555555555554444
  • MasterCard, 5105105105105100
  • Visa, 4111111111111111
  • Visa, 4012888888881881
  • Visa, 4222222222222
    (Note: Even though this number has a different character count than the other test numbers, it is the correct and functional number.)

Processor-specific Cards

  • Dankort (PBS), 76009244561
  • Dankort (PBS), 5019717010103742
  • Switch/Solo (Paymentech), 6331101999990016

Google checkout test cards.

浪荡不羁 2024-10-31 22:53:12

概要,注意:不同的提供商可能会也可能不会要求进一步的步骤。

  • 您在网站上维护用户的购物车
  • 结账时,您将生成一个令牌(由银行提供的算法)
  • 用户在银行网站上输入他/她的银行卡详细信息
  • 您将从银行获得结果所以现在你知道现在该去哪里(成功,失败)

An outline, note: different providers may or may not ask further steps.

  • You maintain users' cart on your site
  • On checkout you'll generating a token (algorithm provided by the bank)
  • User enters his/her card details on the bank's website
  • You'll get the result from the bank so now you know where to go now (success, fail)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文