ショッピングカートを作っています。支払いゲートウェイに行く前に注文を保存したいと思います。私の支払いゲートウェイでは、POST を外部アドレスに送信する必要がありますが、コントローラー アクションから送信する方法は必要ありません。
public function executeBuy(sfWebRequest $request)
{
sfProjectConfiguration::getActive()->loadHelpers('Url');
// save the order
$this->order = new Order();
$this->save
//etc....
//go to TPV Payment gateway
$dsAmount = (float)$order->getPriceWithShipping() * 100;
$dsOrder = (int)$order->getId() * 400;
$dsMerchantCode = (int)sfConfig::get('app_tpv_merchant_code');
$dsCurrency = (int)sfConfig::get('app_tpv_merchant_currency');
$dsMerchantURL = url_for('cart/ipn', true, array(
'sf_culture' => $this->getUser()->getCulture(),
));
$options = array(
'Ds_Merchant_Amount' => $dsAmount,
'Ds_Merchant_Currency' => $dsCurrency,
'Ds_Merchant_Order' => $dsOrder,
'Ds_Merchant_Titular' => $order->getAddress()->getCustomer()->getNameAndLastName(),
'Ds_Merchant_MerchantCode' => $dsMerchantCode,
'Ds_Merchant_MerchantURL' => $dsMerchantURL,
'Ds_Merchant_MerchantSignature' => $digest,
'Ds_Merchant_Terminal' => $dsCurrency
);
//how to send post $options variables to external url?
}