从PHP端的JSON字符串中检索值

时间:2012-03-26 15:09:38

标签: php json

我很困惑,我不知道这个问题。  我试图通过httppost方法检索从Android发布的JSON字符串。在PHP端接收的字符串如下:

{"email": "abcde@xxxxxx.com","psw":"efgh"}

如何检索名称对的值? 我想将“email”和“psw”值保存为PHP中的$ email和$ psw变量。

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

您可以使用json_decode。

$json = '{"email": "abcde@xxxxxx.com","psw":"efgh"}';
print_r(json_decode($json, true));