用于 FTP 传输的 libcurl 的 CURLINFO_RESPONSE_CODE 和 PHP 的 curl_getinfo()
是否可以安全地假设 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际的常量名称是
CURLINFO_HTTP_CODE
(不是用于libcurl
的CURLINFO_RESPONSE_CODE
)。虽然名称中有 HTTP,但您也可以在那里获取 FTP 响应代码:The actual constant name is
CURLINFO_HTTP_CODE
(notCURLINFO_RESPONSE_CODE
, which is forlibcurl
). Although there is HTTP in the name, you can get FTP response codes there as well:这是一个老问题,请注意现在:
PHP 官方文档
It's an old question, please note that nowadays:
PHP official documentation