1

我正在尝试用 php 卷曲帖子
我要提交的页面有这样的代码

<input name="fname" type="hidden" value="show">
<input name="method" type="submit" value="Continue">

我正在尝试模拟此“sumbit”(继续)按钮并使用 php 进行重定向

$post= array("method=>Continue")

$ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $string);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
 curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
 curl_setopt ($ch, CURLOPT_POST, 1);
 curl_setopt ($ch, CURLOPT_POSTFIELDS, $post);
 curl_setopt($ch, CURLOPT_FOLLOWLOCATION  ,1);
 $h = curl_exec($ch);
echo $h;

$post= 数组(?)中应该有什么。我试过 $post= array(name => method)。不工作..有什么想法吗?

4

1 回答 1

1

您可以将CURLOPT_POSTFIELDS选项设置为数组本身:

$post = array(
    "method" => "Continue",
    "fname" => "show"
);

curl_setopt ($ch, CURLOPT_POSTFIELDS, $post);
于 2012-07-28T12:30:59.577 回答