Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/243.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 如何在stripe中运行每周计划还款的特定url?_Php_Stripe Payments - Fatal编程技术网

Php 如何在stripe中运行每周计划还款的特定url?

Php 如何在stripe中运行每周计划还款的特定url?,php,stripe-payments,Php,Stripe Payments,我已经在stripe payment gateway上创建了一个每周计划。我有以下代码用于向特定客户订阅特定计划: $customer = Stripe_Customer::create(array( "card" => $token, "plan" => $PlanID, "email" => $email ) ); 此代码正在成功运行,但当此计划在一周后收费时,

我已经在stripe payment gateway上创建了一个每周计划。我有以下代码用于向特定客户订阅特定计划:

$customer = Stripe_Customer::create(array(
            "card" => $token,
            "plan" => $PlanID,
            "email" => $email
            )
        );

此代码正在成功运行,但当此计划在一周后收费时,我如何才能在数据库中获得更新?

您可以使用Stripe Webhooks使数据库与Stripe保持同步

我想您需要收听充电成功事件