Android 与 PHP后台通信 2019-04-17
2019-04-17 本文已影响0人
小嘜
1、Android用post请求时设置数PHP端识别的数据类型
MediaType.parse("application/x-www.form-urlencoded")
2、PHP端:
$postInfo=file_get_contents('php://input');
$arr=json_decode($postInfo,true);
3、后端数据处理
1、Android用post请求时设置数PHP端识别的数据类型
MediaType.parse("application/x-www.form-urlencoded")
2、PHP端:
$postInfo=file_get_contents('php://input');
$arr=json_decode($postInfo,true);
3、后端数据处理