私は3つの異なるaccount.butとの接続支払いをストライプしようとしています。ストライプは3つの異なるアカウントphyと接続します
例= customer1はcustomer2に100ドル、customer3(アプリケーション所有者)はアプリケーション費用10ドルが必要です。
Stripe::setApiKey('customer3 api key');
try {
$charge = Stripe_Charge::create(array(
"amount" => 100 * 100, // amount in cents, again
"currency" => "usd",
"source" => 'customer1 account token',
"description" => '[email protected]',
"application_fee"=> 10*100,
"destination" => 'customer2 account number')
);
$customer_array = $charge->__toArray(true);
Thanks in advance.