HTTP 常見 Content-Type application/x-www-form-urlencodedmultipart/form-dataapplication/json > $_POST 默認(rèn)只能接收到 Content-Type: applicatio..."/>
您好,登錄后才能下訂單哦!
> HTTP 常見 Content-Type
application/x-www-form-urlencoded
multipart/form-data
application/json
> $_POST 默認(rèn)只能接收到 Content-Type: application/x-www-form-urlencoded 的數(shù)據(jù)
> 如果Content-Type: application/json 需要用到php://input 處理輸入流
請(qǐng)求內(nèi)容 {"account": "123456"}
$tmpData = strval(file_get_contents("php://input"));
$DataArray = json_decode($tmpData, true);
$account = $DataArray['account'];
$tmpData = strval(file_get_contents("php://input"));
public function parseData($data) {
$list = explode("\r\n", $data);
foreach($list as $value) {
if($value) {
if(strstr($value, '--')) continue;
if(strpos($value, '-')) {
$key = str_replace('"', '', strchr($value, '"'));
continue;
};
if($value) {
$array[$key] = $value;
}
}
}
return $array;
}
$DataArray = $this->parseData($tmpData);
$DataArray['account'];
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。