使用PHP Stripe从客户卡每月扣除相同的付款

时间:2017-10-27 09:35:19

标签: php api stripe-payments

我面临很大的麻烦每月/每年从条纹中扣除我的集成条纹工作正常但我怎样才能进行此付款($amount_cents)每月从条带自动扣除,我看到许多堆栈溢出答案但是什么都不清楚。感谢和最好的问候。

$customer =Stripe_Customer::create(array('email' => $_SESSION['userEmail'],));
$charge =Stripe_Charge::create(array("amount" => $amount_cents,"currency" =>"usd","source" => $_POST['stripeToken'],"description" => $description,));`

1 个答案:

答案 0 :(得分:0)

您需要使用subscriptions才能自动产生经常性费用。