1.PHP中怎么设置当前页面编码为utf-8?
header("content:type/html;charset=utf-8");
2.SMTP(Simple Mail Transfer Protocol)简单邮件传输协议
HTTP(Hypertext Transfer Protocol)超文本传输协议
FTP(File Transfer Protocol)文件传输协议
DNS(Domain Name System and Domain Name Service protocol)域名系统(服务)协议
3.HTTP/1.0中,状态码200 301 304 403 404 500的含义?
200 OK 服务器成功处理了请求
300 Moved Permanently(重定向)请求的URL已移走
403 Forbidden (禁止)请求被服务器拒绝
404 NOT Found 未找到资源
500Internal server Error(内部服务器错误) 服务器遇到了一个错误,使其无法为请求提供服务
3.通过页面输入用户名abc密码123登录到www.10086.cn,写出其http协议报头(包括请求行、消息报头、请求正文)
POST www.10086.cn HTTP/1.1
Accpet:text/html,application/xhtml+xml,*/*【文档类型】
Referer:http://localhost/a.html
Accpet-Language:zh-CN 【中文】
User-Agent:Mozilla/5.0(compatible;MSIE 10.0;Windows NT 6.1;WOW64;Trident/6.0;KB974487) 【浏览器内核】
Content-type:application/x-www-form-urlencode
Accept-Encode:gzip,deflate 【内容编码支持gzip】
Host:localhost
Content-Length:25 【返回数据大小】
Connection:Keep-Alive
username=abc&password=123 【post提交】
网友评论