#composer require stripe/stripe-phpphp
require_once('vendor/autoload.php');
$skapi='sk_live_KEY';
$stripe = new \Stripe\StripeClient($skapi);
//wechat_pay和 alipay 二选一
//$Methodtype = 'wechat_pay';
$Methodtype = 'alipay';
$paymentMethod = $stripe-paymentMethods->create(['type' => $Methodtype]);
$paymentIntentParams = [
'amount' => 1000, // 金额,单位为最小货币单位(1000 为 10 元人民币)
'currency' => 'cny',
'payment_method' => $paymentMethod->id,
'payment_method_types' => [$Methodtype],
'confirmation_method' => 'manual', // 手动确认支付
'confirm' => true, // 直接确认支付
'return_url' => 'htt
...
继续阅读
(35)