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" => "" ));
Comments
Post a Comment