如何解码' \ u0040'到' @'通过PHP

时间:2017-05-14 16:59:56

标签: php facebook-graph-api facebook-php-sdk

我使用Facebook API,但Json回复:

{
   "id": "674271626114503",
   "email": "duc2521997\u0040gmail.com"
}

如何解码' \ u0040'到' @'通过PHP? 感谢。

1 个答案:

答案 0 :(得分:1)

试试这个,我们在这里使用json_decode将自己处理\u0040@

Try this code snippet here

<?php
ini_set('display_errors', 1);
$string='{
   "id": "674271626114503",
   "email": "duc2521997\u0040gmail.com"
}';
$array=  json_decode($string,true); //this itself will take care of `\u0040`
echo $array["email"];

输出: duc2521997@gmail.com