這裏是我的代碼示例:條紋,我想創建一個負責直接在連接帳戶
$create_charge = \Stripe\Charge::create(array(
"amount" => round($total_amount_pass_to_stripe * 100),
"currency" => $currency,
"source" => $_POST['stripeToken'],
"description" => $stripe_description,
"application_fee" => round($application_fee * 100), // amount in cents
), array("stripe_account" => $stripe_user_id));
在上面的代碼中,我已經通過了金額爲$ 134.82及報名費爲$ 0.74
這裏條紋 - 4.21 - 0.74 = 129
134.82 * 0.029(這是國際卡率)+ 0.30 = 4.21
Connected帳戶將得到134.82:總金額爲將計算收費。 87
所以我想要做的是:
我的連接帳戶應該得到$ 130和我的申請費用應該是$ 0.74
所以,我要傳遞給帶什麼量,如我所料工作?
如果你能幫我解決問題,我將不勝感激。
在此先感謝。
添加$ 134.95數量 – syed