post提交數(shù)據(jù)的方式,主要體現(xiàn)在http協(xié)議頭上的Content-Type字段船殉,不同的Content-Type對(duì)應(yīng)不同的http請(qǐng)求體抡诞,與之相應(yīng)的php接收數(shù)據(jù)方法也不同踱葛。
1.application/x-www-form-urlencoded
1.1發(fā)送
html中的form表單,如果不設(shè)置enctype屬性春寿,就默認(rèn)用該方式提交數(shù)據(jù)朗涩。
發(fā)送的http請(qǐng)求類(lèi)似:
POST http://example.com/testapi HTTP/1.1
Content-Length: 25
Content-Type: application/x-www-form-urlencoded
name=ball%E7%90%83&age=99
數(shù)據(jù)以kv對(duì)形式存并進(jìn)行了urlencode,多個(gè)kv以&連接绑改。比如上面的請(qǐng)求谢床,實(shí)際發(fā)送的數(shù)據(jù)就是
name=ball%E7%90%83&age=99
1.2接收
可以使用$_POST獲取數(shù)據(jù)。
例:
var_dump($_POST);
//得到結(jié)果
array(2) {
["name"]=>
string(7) "ball球"
["age"]=>
string(2) "99"
}
2.multipart/form-data
2.1發(fā)送
html中的form也可以設(shè)置這種方式上傳數(shù)據(jù)绢淀。還是1中的數(shù)據(jù)萤悴,如果用該方式發(fā)送,則請(qǐng)求類(lèi)似:
POST http://example.com/testapi HTTP/1.1
Content-Length: 234
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary6XncMq0p32KiFnlE
------WebKitFormBoundary6HL7YGChzJuy0cBX
Content-Disposition: form-data; name="name"
------WebKitFormBoundary6XncMq0p32KiFnlE
Content-Disposition: form-data; name="name"
ball球
------WebKitFormBoundary6XncMq0p32KiFnlE
Content-Disposition: form-data; name="age"
99
------WebKitFormBoundary6XncMq0p32KiFnlE--
注意:數(shù)據(jù)并未進(jìn)行urlencode
2.2接收
可以使用$_POST獲取數(shù)據(jù)皆的。
例:
var_dump($_POST);
//得到結(jié)果
array(2) {
["name"]=>
string(7) "ball球"
["age"]=>
string(2) "99"
}
2.3why覆履?
上例可以看到,同樣是發(fā)送name,age,使用multipart/form-data請(qǐng)求要大了很多硝全,那么該方式存在的意義是什么呢栖雾?
- 發(fā)送文件時(shí),必須使用該方式伟众。關(guān)于php如何接收上傳的文件析藕,可以點(diǎn)擊這里查看詳情。
- 我們注意到凳厢,application/x-www-form-urlencoded方式會(huì)對(duì)數(shù)據(jù)進(jìn)行urlencode而multipart/form-data則不會(huì)账胧。所以如果發(fā)送大段漢字時(shí),使用后者可能會(huì)讓請(qǐng)求長(zhǎng)度變小先紫。
3.raw
3.1 發(fā)送
對(duì)應(yīng)的content-type有application/json治泥,text/plain等,都是將一段文本直接發(fā)給服務(wù)端遮精。服務(wù)端的接收方式也相同居夹,所以將其歸為一類(lèi)。這些方式無(wú)法通過(guò)html的form形式發(fā)送本冲。
比如:
POST http://example.com/testapi HTTP/1.1
Content-Length: 27
Content-Type: application/json
{"name":"ball球","age":99}
body中是一段json數(shù)據(jù)准脂,但你也可以使用text/plain發(fā)送該數(shù)據(jù),對(duì)于php服務(wù)端來(lái)說(shuō)并沒(méi)有特別的影響檬洞,只是使用application/json更符合規(guī)范狸膏。
3.2 接收
可以使用php://input接收數(shù)據(jù)
$c = file_get_contents("php://input");
echo $c;
var_dump(json_decode($c, true));
//得到結(jié)果
{"name":"ball球","age":99}
array(2) {
["name"]=>
string(7) "ball球"
["age"]=>
int(99)
}
注意:早先的php版本,還可以從$GLOBALS['HTTP_RAW_POST_DATA']獲取數(shù)據(jù)疮胖,但php7之后环戈,不再支持這種方式。
四.總結(jié)
發(fā)送 | 接收 |
---|---|
application/x-www-form-urlencoded | $_POST |
multipart/form-data(數(shù)據(jù)) | $_POST |
multipart/form-data(文件) | $_FILES |
raw | php://input |