PayPal での支払いにカスタム値を渡そうとしています - OmniPay
ここに私が使用するコードがあります:
$response = $gateway->purchase(
array(
'cancelUrl'=>base_url().'checkout/cancel',
'returnUrl'=>base_url().'checkout/confirm',
'amount' => number_format($retn['invoiceDatas']['price'], 2, '.', ''),
'description' => 'Facture #'.$id,
'currency' => 'EUR',
'transactionid'=> $id,
'custom' => $id,
'description' => 'Facture'
)
)->send();
$response->redirect();
チェックアウトページのコードは次のとおりです。
$response = $gateway->completePurchase(array('amount' => 75.00, 'currency' => 'EUR'))->send();
$data = $response->getData(); // this is the raw response object
echo '<pre>';
print_r($data);
echo '</pre>';
しかし、データ印刷配列には多くの情報がありますが、「transactionID」または「custom」変数に関する情報はありません..
助けてください。ありがとう