大家好,我需要一个使用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(); }发布于 2014-11-04 14:56:40
我觉得应该是$gateway = GatewayFactory::create('PayPal_Express');
另外,显示的确切错误是什么。
https://stackoverflow.com/questions/26605745
复制相似问题