如何在条带API PHP代码中更改货币?

时间:2016-01-27 19:43:04

标签: php stripe-payments

我想将货币从美元兑换成欧元,但它无效。

任何建议都将不胜感激。

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 which shows USD

0 个答案:

没有答案