Skip to content

Instantly share code, notes, and snippets.

@andrewpthorp
Created December 9, 2013 06:02
Show Gist options
  • Save andrewpthorp/7867976 to your computer and use it in GitHub Desktop.
Save andrewpthorp/7867976 to your computer and use it in GitHub Desktop.
Stripe: PHP Metadata
Stripe_Charge::create(array(
"amount" => 400,
"currency" => "usd",
"card" => "some_token_here", // obtained with Stripe.js,
"metadata" => array("key" => "value", "key2" => "value2")
));
@liquorifitapps
Copy link

wow. isn't the internet just great!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment