0

我还没有完全理解到服务器的数据传输。我有哪些方法?当我开始学习 PHP 时,我认为有两种方法称为GET加密 URLPOST中的数据,另一种方法将数据发送到服务器。不过,我不知道具体在哪里。

现在我想了解 RESTful 服务器后端,我了解到GETandPOST只是请求方法,其中包括PUTand DELETE,这似乎与数据如何传输到服务器没有任何关系。

此外,我读到可以在 HTTP 标头中发送附加数据。这是POST实际发送数据的方式还是有区别?

无论使用 PHP 数组的请求方法如何,我都想读取 POST 数据$_POST,但这不起作用。另一方面,当我尝试从 手动解析标头信息时php://input,我看不到 POST 数据。有人可以向我解释在不同情况下数据在哪里传输吗?

我的目标是从客户端获取参数,无论内容类型如何,可能是form-datajson或其他内容,以及请求方法。我怎样才能在 PHP 中做到这一点?将使用 JQuery 的 AJAX 功能发送请求。

4

1 回答 1

1

使用http://linux.die.net/man/1/nc来解释 http 是如何工作的nc

得到

$ nc -l 8888在 8888 启动一个虚拟服务器监听

使用 jQuery 发送 GET 请求(通过 XHR 实现)

$.get("http://localhost:8888", { a :1 ,b: 2})

nc 会将 XHR 发送到服务器的内容打印到标准输出

$nc -l 8888
GET /?a=1&b=2&_=1383234919249 HTTP/1.1
Host: localhost:8888
Connection: keep-alive
Accept: */*
Origin: http://stackoverflow.com
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36
DNT: 1
Referer: http://stackoverflow.com/questions/19710815/understanding-how-xmlhttprequest-sends-data-to-a-server
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4

因此,PHP 解析GET /?a=1&b=2&_=1383234919249$_GET

邮政

用于nc记录 POST

POST / HTTP/1.1
Host: localhost:8888
Connection: keep-alive
Content-Length: 7
Accept: */*
Origin: http://stackoverflow.com
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101 Safari/537.36
Content-Type: application/x-www-form-urlencoded
DNT: 1
Referer: http://stackoverflow.com/questions/19710815/understanding-how-xmlhttprequest-sends-data-to-a-server
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4

a=1&b=2

在这里你可以看到Content-Type: application/x-www-form-urlencoded ,它告诉浏览器发送的 http 正文是表单编码的

结果,PHP 解析a=1&b=2为数组$_POST

为什么php://input看不到 POST BODY

根据http://php.net/manual/en/wrappers.php.php

php://input是一个流,只能读取一次

以下来自php doc

注意:使用 php://input 打开的流只能读取一次;该流不支持查找操作。但是,根据 SAPI 实现,可能会打开另一个 php://input 流并重新开始读取。这只有在请求正文数据已保存时才有可能。通常,这是 POST 请求的情况,但不是其他请求方法,例如 PUT 或 PROPFIND。

于 2013-10-31T16:10:26.267 回答