1

我正在使用 codeigniter 并想实施omnipay。我的开发环境是windows,我使用wamp server。经过一番努力,我安装了它,下载了 composer,然后 curl,然后更改了 httpd.conf 中的访问控制。

现在我无法使用omnipay 的功能。我用这段代码创建了一个网关

echo 'testing the omnipay';

require 'Vendor/autoload.php';

use Omnipay\Common\GatewayFactory;

$gateway = GatewayFactory::create('PayPal_Express');
$gateway->setUsername('some_username');
$gateway->setPassword('some_password');
$gateway->setSignature('some_signature');
$gateway->setTestMode(true);

我不知道如何继续

我想知道是否有任何正确使用omnipay的教程或在线文档

问候,南达库玛

4

1 回答 1

1

设置创建网关后,您可以使用它进行购买。文档在 Omnipay 附带的 README 中。

这里有一个例子:https ://github.com/omnipay/omnipay#tldr

在这里:https ://github.com/omnipay/omnipay#gateway-methods

$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();
}
于 2013-09-12T21:45:46.267 回答