我有一个像这样的代码
<?php
$jsonurl = "http://api.tamilmagazine.com/";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
print_r($json_output);
?>
上面的代码将json响应返回为。
stdClass Object
(
[mag_id] => 1
[mag_name] => ஆனநà¯à®¤ விகடனà¯
[sid] => 544
[bpath] => http://www.tamilmagazine.com/
[api_path] => http://api.tamilmagazine.com/
[categories] => Array
(
[0] => stdClass Object
(
[cat_id] => 25
[cat_name] => அரசியலà¯
[articles] => Array
(
[0] => stdClass Object
(
[aid] => 20053
[a_title] => தலையஙà¯à®•à®®à¯ - கறà¯à®±à¯à®•à¯ கொடà¯à®™à¯à®•à®³à¯ மேதைகளே...
[p_no] => 7
[weburl] => tamilmagazine/msite.php?type=article&mid=1
)
. . .. .. . . . . . . . . . . . . . . . . . . . and so on . . . .
当我在浏览器中查看给定的api(http://api.tamilmagazine.com/)时,我得到了正确的字体。
{
"mag_id": "190987",
"mag_name": "தென்மேற்கு பருவமழை கேரளாவில் வரும் 5ம் துவங்கும் ",
"sid": "44",
"bpath": "http://www.tamilmagazine.com/",
"api_path": "http://api.tamilmagazine.com/",
"categories": [
{
"cat_id": "25",
"cat_name": "தென்மேற்கு பருவமழை கேரளாவில் வரும் 5ம் துவங்கும் ",
"articles": [
{
"aid": "3",
"a_title": "தென்மேற்கு பருவமழை கேரளாவில் வரும் 5ம் துவங்கும் ...",
"p_no": "7",
"weburl": "msitee.php?type=article&mid=1"
},
. .. . . . . and so on. . ...
换句话说,我的api url在浏览器中工作正常,而php解析后的api url在我的浏览器中对我不起作用,显示了一些特殊字符(我不知道它的unicode还是ascii)。
请指教。
由于 哈恩
答案 0 :(得分:2)
这在服务器中可能是正确的 - 但在broswer中查看它看起来是错误的。如果你没有指定输出的字符编码,或者php.ini中的设置是错误的,那么浏览器会猜测,并且经常会出错。
测试的几种方法:
通过签署视图来检查“来源”。 (确保您可以在兼容的文本编辑器中查看源代码 - 否则可能会发生相同的情况)
在执行调试输出之前,首先添加正确的HTML标头以设置编码:
echo '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /></head><body>'; // Set the charset appropriately! Looks like a cyrillic set? print_r($json_output); echo '</body></html>';
检查旁边的PHP输出是否有正确的标题。 php.ini有一个输出的默认设置:“default_charset”。如果这是空白或错误,请在php.ini或使用ini_set()中将其设置为apprpriate值;并且这将告诉php指定字符编码头。
您还可以使用header()指定编码标头 - 但php.ini指令可能会发生冲突,因此请使用其中一种。
最后,如果失败,您需要手动解码。通过“contacto at hardcode dot com dot 25-Nov-2010 01:53”检查手册中的注释(http://php.net/manual/en/function.json-decode.php),因为它具有示例功能
处理实际字符串时可以使用的其他技巧是使用
echo utf8_decode(print_r($json_output, true));
因为这可能会更容易被浏览器转换为ISO IF ,原始版本为UTF-8。可能它不是utf-8否则浏览器应该理解并适当地显示它,但如果所有其他方法都失败了,那么值得一试。
答案 1 :(得分:0)
这是我编辑的PHP代码。
<?php
header("Content-type: text/html; charset=utf-8");
$jsonurl = "http://api.tamilmagazine.com/";
$json = file_get_contents($jsonurl,0,null,null);
$json_output = json_decode($json);
print_r($json_output);
?>
有效。我忘了提及内容类型。