使用curl的帖子请求不起作用 - PHP

时间:2013-11-23 01:13:14

标签: php post curl

我希望将PHP帖子的响应作为字符串获取。我正在使用卷曲,基于我在这里找到的一些参考文献。

这是我的功能:

function curlPost($url, $parameters){

    $ch = curl_init();

    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_POST, 2);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $parameters);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    $response = curl_exec($ch);

    curl_close($ch);

    return $response;
}

这看起来似乎是正确的,但是当我运行它时,它不会发生任何事情。我已经尝试过硬编码$ url和$参数,但它也没有用。

有什么想法吗?

谢谢!

0 个答案:

没有答案