我使用Facebook API,但Json回复:
{
"id": "674271626114503",
"email": "duc2521997\u0040gmail.com"
}
如何解码' \ u0040'到' @'通过PHP? 感谢。
答案 0 :(得分:1)
试试这个,我们在这里使用json_decode
将自己处理\u0040
到@
<?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