I want to change currency from USD to EURO, but it's not working.
Any suggestions would be 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" => ""
));