我正在开发一个PHP
链接到Protx VSP Direct payment gateway
. 为了处理来自信用卡处理公司的“3D Secure”请求,我需要将用户转发到另一个网站,模仿已发布的表格。我正在尝试使用这些cURL
库,但似乎遇到了问题。我的代码如下:
<?php
$ch = curl_init();
// Set the URL
curl_setopt($ch, CURLOPT_URL, 'http://www.google.com/');
// Perform a POST
curl_setopt($ch, CURLOPT_POST, 1);
// If not set, curl prints output to the browser
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 0);
// Set the "form fields"
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
$output = curl_exec($ch);
curl_close($ch);
?>
所有这一切都是抓取通过的 URL 的内容,并且不会将用户转发到任何地方。我已经尽可能多地尝试谷歌搜索和阅读,但无法弄清楚我错过了什么。有任何想法吗?如果可以避免的话,我不想创建一个自动提交的 HTML 表单。
谢谢你的帮助 :-)