这是我通过twitter API获得的JSON文件的一部分:
“text”:“科学家发现研究分子的新方法:Queen\u2019的研究人员已经发现了研究方法。http://bit.ly/chbweE“
我在我的项目中使用PHP。
在使用json_decode函数之后,\u2019被转换成了``
我尝试使用$raw_json = preg_replace("u2019","'",$raw_json)
,但json_decode
函数返回NULL。
有没有其他方法可以将\u2019转换为'?
谢谢
编辑:
这就是我如何获得JSON的方法:
// create curl resource
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, "http://search.twitter.com/search.json?q=from%3Agizmodo&rpp=10");
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$raw_json = curl_exec($ch);
// close curl resource to free up system resources
curl_close($ch);
2条答案
按热度按时间pieyvz9o1#
这可能是你在输出中使用的字符集的问题。如果你输出到一个HTML页面,尝试添加以下Meta标签到你的
<head>
部分:1yjd4xko2#
在
preg_replace
中缺少正则表达式分隔符/.../
。试试看:此外,为了更安全,我只替换那些实际上是转义字符的示例: