php操作http

一、
1XX:指示信息,请求已接收,继续处理

2XX:成功,请求被成功处理,理解接受

3XX:重定向,

4XX:客户端错误

5XX:服务器端错误

二、
file_get_contents(),fopen(),file(), readfile()等操作网络地址时,可以用变量$http_response_header查看http请求信息,fopen()还可以用stream_get_meta_data($fp);查看详细的http请求信息


你可能感兴趣的:(php操作http)