如何在php中解析这个json数据(替换为“with”)

时间:2017-04-22 09:39:31

标签: php thinkphp

我从Android App获得了一个类似

的json数据

{"NickName":"Tom"}

如何使用php获取NickName数据?

1 个答案:

答案 0 :(得分:1)

使用html_entity_decode制作json数据,使用json_decode获取名称

检查小提琴:https://eval.in/780633

  <?php
   $str = "{&quot;NickName&quot;:&quot;Tom&quot;}";
   echo $text = html_entity_decode($str);
   echo "\n";
   echo json_decode("$text")->NickName;
  ?>