• Curl http_code 状态码 意义及信息


    shell命令:curl -I -m 10 -o /dev/null -s -w %{http_code} http://test.com


    curl_init — 初始化一个curl会话
    curl_copy_handle — 拷贝一个curl连接资源的所有内容和参数
    curl_errno — 返回一个包含当前会话错误信息的数字编号
    curl_error — 返回一个包含当前会话错误信息的字符串
    curl_exec — 执行一个curl会话
    curl_getinfo — 获取一个curl连接资源句柄的信息
    curl_multi_init — 初始化一个curl批处理句柄资源
    curl_multi_add_handle — 向curl批处理会话中添加单独的curl句柄资源
    curl_multi_close — 关闭一个批处理句柄资源
    curl_multi_exec — 解析一个curl批处理句柄
    curl_multi_getcontent — 返回获取的输出的文本流
    curl_multi_info_read — 获取当前解析的curl的相关传输信息
    curl_multi_remove_handle — 移除curl批处理句柄资源中的某个句柄资源
    curl_multi_select — Get all the sockets associated with the cURL extension, which can then be "selected"
    curl_setopt_array — 以数组的形式为一个curl设置会话参数
    curl_setopt — 为一个curl设置会话参数
    curl_version — 获取curl相关的版本信息
    curl_close — 关闭一个curl会话


    curl爬取过程中,会返回一个http_code,下面是他们的意义信息
    $http_code["0"]="Unable to access";
    $http_code["100"]="Continue";
    $http_code["101"]="Switching Protocols";
    $http_code["200"]=”OK”;
    $http_code["201"]=”Created”;
    $http_code["202"]=”Accepted”;
    $http_code["203"]=”Non-Authoritative Information”;
    $http_code["204"]=”No Content”;
    $http_code["205"]=”Reset Content”;
    $http_code["206"]=”Partial Content”;
    $http_code["300"]=”Multiple Choices”;
    $http_code["301"]=”Moved Permanently”;
    $http_code["302"]=”Found”;
    $http_code["303"]=”See Other”;
    $http_code["304"]=”Not Modified”;
    $http_code["305"]=”Use Proxy”;
    $http_code["306"]=”(Unused)”;
    $http_code["307"]=”Temporary Redirect”;
    $http_code["400"]=”Bad Request”;
    $http_code["401"]=”Unauthorized”;
    $http_code["402"]=”Payment Required”;
    $http_code["403"]=”Forbidden”;
    $http_code["404"]=”Not Found”;
    $http_code["405"]=”Method Not Allowed”;
    $http_code["406"]=”Not Acceptable”;
    $http_code["407"]=”Proxy Authentication Required”;
    $http_code["408"]=”Request Timeout”;
    $http_code["409"]=”Conflict”;
    $http_code["410"]=”Gone”;
    $http_code["411"]=”Length Required”;
    $http_code["412"]=”Precondition Failed”;
    $http_code["413"]=”Request Entity Too Large”;
    $http_code["414"]=”Request-URI Too Long”;
    $http_code["415"]=”Unsupported Media Type”;
    $http_code["416"]=”Requested Range Not Satisfiable”;
    $http_code["417"]=”Expectation Failed”;
    $http_code["500"]=”Internal Server Error”;
    $http_code["501"]=”Not Implemented”;
    $http_code["502"]=”Bad Gateway”;
    $http_code["503"]=”Service Unavailable”;
    $http_code["504"]=”Gateway Timeout”;
    $http_code["505"]=”HTTP Version Not Supported”;

  • 相关阅读:
    pymssql连接Azure SQL Database
    Python升级后ssl模块不可用问题解决和浅析
    CentOS 7升级Python到3.6.6后yum出错问题解决总结
    Python监控SQL Server数据库服务器磁盘使用情况
    fastjason常用方法
    类型擦除真的能完全擦除一切信息吗?java 泛型揭秘
    spring boot打包成war包的页面该放到哪里?
    为什么delete后磁盘空间没有释放而truncate会释放?
    leetcode 977. Squares of a Sorted Array
    leetcode 844. Backspace String Compare
  • 原文地址:https://www.cnblogs.com/doseoer/p/5623285.html
Copyright © 2020-2023  润新知