简单的 cURL 不起作用

发布于 2024-12-05 07:16:53 字数 1031 浏览 0 评论 0原文

我想使用 cURL 自动发布表单。 这是我想用 cURL 发布的表单:

<form action="login/main_login.php" method="post">
<input type="hidden" name="url" value="index.php" />
<input type="submit" value="Submit" />
</form>

我使用这个代码:

$ch =curl_init();
curl_setopt($ch, CURLOPT_URL, 'login/main_login.php');
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, "url=index.php");
$data = curl_exec($ch);
curl_close($ch);

但它不起作用,它甚至没有将我发送到 login/main_login.php。 我正在使用 wampserver 并通过取消注释 extension=php_curl.dll 编辑了两个 php.ini 文件。

使用 echocurl_error(); 给我以下错误:

curl_error() expects exactly 1 parameter, 0 given inWarning: curl_error() expects exactly 1 parameter, 0 given in C:\wamp\www\website\page.php on line 10

放在

if($data==FALSE)
{
    die("Curl failed: " . curL_error($ch));
}

curl_close($ch);前面给我一个空白页,其中包含以下文字:

Curl 失败:无法解析主机:登录;找不到主机

I want to use cURL to automatically post a form.
This is the form I want to post with cURL:

<form action="login/main_login.php" method="post">
<input type="hidden" name="url" value="index.php" />
<input type="submit" value="Submit" />
</form>

I use this code:

$ch =curl_init();
curl_setopt($ch, CURLOPT_URL, 'login/main_login.php');
curl_setopt($ch, CURLOPT_POST, TRUE);
curl_setopt($ch, CURLOPT_POSTFIELDS, "url=index.php");
$data = curl_exec($ch);
curl_close($ch);

But it isn't working, it is not even sending me to the login/main_login.php.
I am using wampserver and edited both php.ini files by uncomment extension=php_curl.dll .

Using echo curl_error();
gives me the following error:

curl_error() expects exactly 1 parameter, 0 given inWarning: curl_error() expects exactly 1 parameter, 0 given in C:\wamp\www\website\page.php on line 10

Putting

if($data==FALSE)
{
    die("Curl failed: " . curL_error($ch));
}

in front of curl_close($ch); gives me a blank page with the text:

Curl failed: Could not resolve host: login; Host not found

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南汐寒笙箫 2024-12-12 07:16:53

尝试输入绝对网址而不是相对网址

try to put an absolute url instead of a relative one

执手闯天涯 2024-12-12 07:16:53

如果您希望从curl_exec()调用返回结果,请使用RETURNTRANSFER

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );

,并在调用curl_error()时使用句柄$ch

$ret_val = curl_error($ch);

Use RETURNTRANSFER if you want the results returned from the curl_exec() call

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true );

and use the handle $ch when calling curl_error()

$ret_val = curl_error($ch);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文