使用Curl在Laravel中重定向到PayUMoney
P粉877114798
P粉877114798 2023-07-22 20:17:03
0
1
497

我想使用Curl從我的PHP伺服器重定向到PayUMoney支付網關。

我正在使用Laravel框架,但我不想使用HTML/Blade方法來觸發支付網關。


$posted = array();

$posted['key'] = $MERCHANT_KEY;
$posted['hash'] = $hash;
$posted['txnid'] = $txnid;
$posted['firstname'] = $firstname;
$posted['email'] = $email;
$posted['phone'] = $phone;
$posted['amount'] = $amount;
$posted['productinfo'] = $productinfo;
$posted['surl'] = $surl;
$posted['furl'] = $furl;
                
ini_set('display_errors', 1);

$c = curl_init();

$url = "https://test.payu.in/_payment";
curl_setopt_array($c, array(
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => 0,
    CURLOPT_FOLLOWLOCATION => 1,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $posted,
));
$response = curl_exec($c);

但是這段程式碼顯示的輸出如下,因此無法完全重定向到支付網關(https://i.stack.imgur.com/WmDFS.png)。

P粉877114798
P粉877114798

全部回覆(1)
P粉020085599
$posted = array(
        'key' => $MERCHANT_KEY,
        'hash' => $hash,
        'txnid' => $txnid,
        'firstname' => $firstname,
        'email' => $email,
        'phone' => $phone,
        'amount' => $amount,
        'productinfo' => $productinfo,
        'surl' => $surl,
        'furl' => $furl,
    );



$url = "https://test.payu.in/_payment";
$c = curl_init();
curl_setopt_array($c, array(
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => false,
    CURLOPT_FOLLOWLOCATION => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => http_build_query($posted),
    CURLOPT_HEADER => false,
));
curl_setopt($c, CURLOPT_VERBOSE, true);
curl_setopt($c, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, 0);

$response = curl_exec($c);
curl_close($c);

將頁面重新導向到PayUmoney支付網關。

return Redirect::away($url)->withInput($request->input());

或可以用:

header("Location: $url");
exit;
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!