条纹订阅期

时间:2016-02-17 17:32:35

标签: stripe-payments

我收到了charge.php订阅。我注意到的问题是时期是从今天开始 - >第二年的下一个日期。

期末会发生什么:

屏幕截图:http://d.pr/i/6MEn

条纹是否会从2017年2月 - 2018年2月开始另一张发票?或者我是否需要进行一些编码以确保用户订阅永远不会停止,直到他们取消订阅?

谢谢!对不起,如果被问到,但我搜查了。

以下是我的新用户代码,让用户 - 制定计划 - 将用户添加到自定义计划中(因为它是捐赠表单,用户选择金额和运行期限(每个月) ,3个月,6个月等)

    $stripe_new_customer = \Stripe\Customer::create(array(
        "source" => $token,
        "description" => $name,
        "email" => $email,
        "metadata" => array("order_id" => $order_id, "source" => "Website Online Donation")
    ));

    $customer_id = $stripe_new_customer->id;

    $stripe_plan = \Stripe\Plan::create(array(
        "amount" => $amount,
        "interval" => "month",
        "interval_count" => $term,
        "name" => "Recurring Donation",
        "currency" => "usd",
        "id" => $plan_name
        )
    );

    $customer_made = \Stripe\Customer::retrieve($customer_id);
    $customer_made->subscriptions->create(array("plan" => $plan_name));

    $plan_remove = \Stripe\Plan::retrieve($plan_name);
    $plan_remove->delete();

1 个答案:

答案 0 :(得分:0)

Stripe的订阅会无限期续订,直到它们被取消,可以手动(通过发送cancel subscription API请求),也可以在付款失败后自动更新,如果您在subscriptions settings中设置它的方式。