Last active
June 9, 2016 13:52
-
-
Save vanbo/34b6cb7e73d1a10d4f759d86566b6261 to your computer and use it in GitHub Desktop.
Charge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| \Stripe\Stripe::setApiKey('the_key'); | |
| // I do set this usually, but tried without it, too | |
| \Stripe\Stripe::setApiVersion('2016-03-07'); | |
| $card = array( | |
| 'number' => '4242424242424242', | |
| 'exp_month' => 5, | |
| 'exp_year' => date('Y') + 1 | |
| ); | |
| $c = \Stripe\Charge::create( | |
| array( | |
| 'amount' => 100, | |
| 'currency' => 'usd', | |
| 'card' => $card | |
| ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment