gpt4 book ai didi

php - 在 php 中创建订阅后在 Stripe 上显示订阅 ID

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:44:41 25 4
gpt4 key购买 nike

我似乎无法弄清楚这一点。所以我正在做的是有一个自动支付页面。客户点击自动付款,php 脚本将创建带有 strip 的订阅。我想不通的是如何获取该订阅 ID 以将其保存在我的数据库中。这是我所拥有的:

$cu = Stripe_Customer::retrieve("$stripename"); 
$cu->subscriptions->create(array("plan" => "cocacola"));

因此,这会很好地创建 strip 订阅。我现在想将该新订阅 ID 保存在我的数据库中。我可以使用这一行获取数据列表:

echo "$cu->subscriptions";

订阅 ID 与许多其他数据一起显示在那里,但我似乎无法将其隔离并保存到字符串中。

echo 的回复:

{
"object": "list",
"count": 1,
"url": "/v1/customers/cus_3bgSLHOiTUHFjq/subscriptions",
"data": [
{
"id": "sub_3c3YirUU5jAftr",
"plan": {
"id": "cocacola",
"interval": "month",
"name": "cocacola",
"created": 1392273785,
"amount": 80000,
"currency": "usd",
"object": "plan",
"livemode": false,
"interval_count": 1,
"trial_period_days": null,
"metadata": []
},
"object": "subscription",
"start": 1394065982,
"status": "active",
"customer": "cus_3bgSLHOiTUHFjq",
"cancel_at_period_end": false,
"current_period_start": 1394065982,
"current_period_end": 1396744382,
"ended_at": null,
"trial_start": null,
"trial_end": null,
"canceled_at": null,
"quantity": 1,
"application_fee_percent": null,
"discount": null
}
]
}

我正在尝试将“sub_3c3YirUU5jAftr”保存到一个字符串中。

最佳答案

    Stripe::setApiKey("Use your api key"); // use your api key
$subscription = Stripe_Customer::create(array(
'source' => 'Use your token', // Pass Token
'plan' => '1', // Pass plan id
'customer' => 'Use Customer Id' // Pass customer id
)
);
echo $subscription['subscription']['id'];

在这里你可以获取变量$subscription中的数据

关于php - 在 php 中创建订阅后在 Stripe 上显示订阅 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22212916/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com