在码接口时候遇到移动端明明使用post方式提交的数据,可是后台接口中用post,get ,request都获取不到数据。
是由于在用post等正常方式获取数据时候是需要加键,例如前台是<input type="text" name="demo" value="hah"/> 而后台获取数据是d=file_get_contents("php://input");并且通过 parse_str(data);转成我们能使用的关联数组
$v = file_get_contents('php://input');
parse_str($v);
$username = $username;
$password = base64_decode($password);
网友评论