how to change currency in stripe api php code -


i want change currency usd eur, not working

any suggestion appreciated

require_once 'vendor/autoload.php'; \stripe\stripe::setapikey('sk_test_czz6uxdf53acum9iwjbqa1of');  $charge = \stripe\charge::create(array( 'card' => $_post['stripetoken'], 'amount' => 6.53,  'currency' => 'eur', "description" => "" )); 

see attachment show usd


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -