博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
curl http_code
阅读量:6157 次
发布时间:2019-06-21

本文共 1724 字,大约阅读时间需要 5 分钟。

转载:

<?php

//[Informational 1xx]
$http_code["0"]="Unable to access";
$http_code["100"]="Continue";
$http_code["101"]="Switching Protocols";

//[Successful 2xx]

$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";

//[Redirection 3xx]

$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";

//[Client Error 4xx]

$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";

//[Server Error 5xx]

$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";

转载于:https://www.cnblogs.com/persist/archive/2013/04/18/3027959.html

你可能感兴趣的文章
java:我们对Iterator理解错了
查看>>
MMJ-Spring Boot(Java)获取小程序Openid
查看>>
jQuery常见的选择器操作运算符
查看>>
zabbix针对目录监控
查看>>
关于内核页表和进程页表的一个问题
查看>>
linux启动系统不显示进度条设置方法
查看>>
linux CentOS7 磁盘分区fdisk 、df 、du、parted 命令实例
查看>>
CUDA学习(六十三)
查看>>
与登录shell相关的文件
查看>>
Git 初次学习笔记
查看>>
Java线程:线程交互
查看>>
dbms_metadata.get_ddl的使用总结
查看>>
修改SSO管理员密码
查看>>
QCwindows server 2003部署
查看>>
批量修改密码脚本
查看>>
关于盘符里某些文件夹删除不了的解决方案研究
查看>>
lzg_ad:XPE操作系统镜像尺寸优化
查看>>
GlusterFS架构与维护
查看>>
全天下最经典的句子,2013重现!
查看>>
Microsoft Windows 7.0 build 7000 NAP测试--健康状态检测验证报告
查看>>