PHP版客户端:
1.第一种情况是客户端通过ajax请求接口。
$.ajax({
type: 'POST',
url: url ,
data: data ,
success: success ,
dataType: dataType
});
2.第二种情况是客户端可以通过curl请求。
//设置URL,POST方式提交以及POST数据
curl_setopt($ch, CURLOPT_URL, $apiurl);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "post数据");
$result = curl_exec($ch);
PHP版服务端:
$sendjson=file_get_contents("php://input");
print_r($sendjson);