0

皆さん、こんにちは。Omnipay ライブラリのストライプと skrill を使用するための実例が必要です。

github コードはあまり役に立ちませんでした。ありがとうございました

use Omnipay\Omnipay;

$gateway = Omnipay::create('Stripe'); $gateway->setApiKey('abc123');

$formData = ['number' => '4242424242424242', 'expiryMonth' => '6',
'expiryYear' => '2016', 'cvv' => '123']; $response =
$gateway->purchase(['amount' => '10.00', 'currency' => 'USD', 'card'
=> $formData])->send();

if ($response->isSuccessful()) {
    // payment was successful: update database
    print_r($response); } elseif ($response->isRedirect()) {
    // redirect to offsite payment gateway
    $response->redirect(); } else {
    // payment failed: display message to customer
    echo $response->getMessage(); }
4

1 に答える 1