PHP接收json格式的POST数据/**
* 获取 post 参数; 在 content_type 为 application/json 时,⾃动解析 json
* @return array
*/
private function initPostData()
{
if (empty($_POST) && false !== strpos($this->contentType(), 'application/json')) {
$content = file_get_contents('php://input');
$post    = (array)json_decode($content, true);
} else {
$post = $_POST;
}
phpjson格式化输出return $post;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。