我有登录表格
<form class="form-std" method="POST" id="connexion-form" action="https://some-server/auth">
<input type="text" name="username" />
<input type="password" name="password" />
<input type="submit" value="Ok"/>
</form>
提交后我有新的html页面https://some-server/auth和json
{"statusMessage":"Some Message","statusCode":"Ststus code"}
如何将json数组转换为php文件,更好的是不用去html页面?我需要根据状态代码,在我的php中做一些事情。