$customer1 = \Stripe\Customer::create([
"description" => "test",
'email' => 'a@example.com',
]);
$customerObj = \Stripe\Customer::retrieve($customer1->id);
$sourceObj = $customer->sources->create(["source" => 'src_xxxx']);
已创建源对象。我能理解。
我不明白源对象在Customer对象中的何处创建。
如何检查上面从Customer对象创建的源对象?
var_export($customer->sources->source);
答案 0 :(得分:0)
您必须再次获取Customer对象,才能在源列表中查看更新的源。为此使用https://stripe.com/docs/api#retrieve_customer