gpt4 book ai didi

php - 使用 PHP 和 Curl 隐藏响应

转载 作者:可可西里 更新时间:2023-10-31 23:52:35 26 4
gpt4 key购买 nike

我正在重用很久以前的 curl 函数,它现在的行为与我内存中的不同。在这种特殊情况下,我要验证用户的 Twitter 凭据。这是现在的代码:

$cred = $_POST['twitter_username'].':'.$_POST['twitter_password'];
$url = "http://twitter.com/account/verify_credentials.json";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_GET, 0);
curl_setopt($ch, CURLOPT_USERPWD, $cred);
$result = curl_exec ($ch);
curl_close ($ch);

这对于身份验证工作正常,但将整个 JSON 响应输出到浏览器,这是我不想做的。

我对 curl 不是很熟悉。我尝试将 CURLOPT_VERBOSE 设置为 0 和 false,但均无效。我确信这是某处非常简单的更改,但我不知道它是什么。

谢谢

最佳答案

你需要这个选项:

curl_setopt(CURLOPT_RETURNTRANSFER, true);

来自curl docs :

CURLOPT_RETURNTRANSFER: TRUE to return the transfer as a string of the return value of curl_exec() instead of outputting it out directly.

关于php - 使用 PHP 和 Curl 隐藏响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/783205/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com