Skip to content

Instantly share code, notes, and snippets.

@keikubo
Last active December 15, 2015 17:39
Show Gist options
  • Save keikubo/5297566 to your computer and use it in GitHub Desktop.
Save keikubo/5297566 to your computer and use it in GitHub Desktop.
<?php
require_once("lib/Stripe.php");
Stripe::setApiKey('webpay_api_key');
Stripe::$apiBase = "https://api.webpay.jp";
$myCard = array('number' => '4242424242424242', 'exp_month' => 5, 'exp_year' => 2015, 'name' => 'Kei Kubo', 'cvc' => 123);
$charge = Stripe_Charge::create(array('card' => $myCard, 'amount' => 2000, 'currency' => 'jpy'));
echo $charge;
echo $charge["id"];
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment