用于 FTP 传输的 libcurl 的 CURLINFO_RESPONSE_CODE 和 PHP 的 curl_getinfo()

发布于 2024-10-02 10:01:53 字数 452 浏览 7 评论 0原文

是否可以安全地假设 PHP 的 curl_getinfo() 返回数组键“http_code”的值是 libcurl 的 CURLINFO_RESPONSE_CODE 的值?

换句话说:在 PHP 中使用 curl_getinfo() 得到的 CURLINFO_HTTP_CODE 值是否与使用 curl_easy_getinfo()< 得到的 CURLINFO_RESPONSE_CODE 值相对应/code> 在 libcurl 中?

因此它对于 FTP 传输也有意义吗?

FTP 传输后的值是 FTP 回复代码

Is it safe to assume that the value PHP's curl_getinfo() returns for array key 'http_code' is the value of libcurl's CURLINFO_RESPONSE_CODE?

In other words: does the value of CURLINFO_HTTP_CODE using curl_getinfo() in PHP correspond to the value of CURLINFO_RESPONSE_CODE using curl_easy_getinfo() in libcurl?

And it is therefore also meaningful for FTP transfers?

And the value after an FTP transfer is an FTP reply code?

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

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

发布评论

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

评论(2

划一舟意中人 2024-10-09 10:01:53

实际的常量名称是 CURLINFO_HTTP_CODE(不是用于 libcurlCURLINFO_RESPONSE_CODE)。虽然名称中有 HTTP,但您也可以在那里获取 FTP 响应代码:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'ftp://user:[email protected]');
curl_exec($ch);

$response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo $response_code; // outputs 226, which means 'Closing data connection'

The actual constant name is CURLINFO_HTTP_CODE (not CURLINFO_RESPONSE_CODE, which is for libcurl). Although there is HTTP in the name, you can get FTP response codes there as well:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'ftp://user:[email protected]');
curl_exec($ch);

$response_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
echo $response_code; // outputs 226, which means 'Closing data connection'
稍尽春風 2024-10-09 10:01:53

这是一个老问题,请注意现在:

CURLINFO_HTTP_CODE - 最后的响应代码。从 cURL 7.10.8 开始,这是 CURLINFO_RESPONSE_CODE 的旧别名

PHP 官方文档

It's an old question, please note that nowadays:

CURLINFO_HTTP_CODE - The last response code. As of cURL 7.10.8, this is a legacy alias of CURLINFO_RESPONSE_CODE

PHP official documentation

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