PHP Paypal Class

前端 未结 5 1469
遥遥无期
遥遥无期 2021-01-12 17:39

Could anybody recommend a up-to-date class (or payment system) for handling paypal recurring payments with PHP?

Thank you!


UPDATE: I ended up u

相关标签:
5条回答
  • 2021-01-12 18:18

    PHP Payment Library for Paypal, Authorize.net and 2Checkout:

    http://www.phpfour.com/blog/2009/02/php-payment-gateway-library-for-paypal-authorizenet-and-2checkout/

    0 讨论(0)
  • 2021-01-12 18:26

    Paypal provides a very nice code snippet for processing paypal transactions, then it's just a matter of setting up a cron job that pulls from a DB what transactions to process.

    0 讨论(0)
  • 2021-01-12 18:30

    Just in case you are still interested in one. This one is working really great and extremely easy to implement:

    http://www.micahcarrick.com/04-19-2005/php-paypal-ipn-integration-class.html

    0 讨论(0)
  • 2021-01-12 18:34

    If you have the freedom to pick a gateway, pick one that provides recurring billing services and APIs to us them. I know authorize.net does.

    You really, really, really, don't want to store credit card information. Really.

    If you want to do a "save my information" kind of thing, find a vendor that supports storing the card details for you. Braintree does this, and I'm sure other vendors do as well.

    0 讨论(0)
  • 2021-01-12 18:39

    I published a class that really simplifies using the Paypal API, you can check it out over on Binpress. I just recently added recurring payments support

    0 讨论(0)
提交回复
热议问题