My blog is a php myBloggie program, when RSS2 subscriber like Google reader, this display of Chinese turn to be like
& # 25105 ; & # 26159; & # 20013; & # 22269;
If you are using IE7, you can see this problem on my RSS2 xml http://blog.tntsoft.com/rss/rss2.php at the lowest item.
To solve it, I did two things:
1.Change my php blog program language character set to "UTF-8" (charset="utf-8")
2.In the RSS2 XML file, setup language encoding to UTF-8 (<?xml version="1.0" encoding="UTF-8"?> )
Now it is OK in display both Chinese and English in one same document.
--------------------------------------------------------------------------
在RSS reader中显示我的blog很奇怪,都变成了
& # 25105 ; & # 26159; & # 20013; & # 22269;
你可以从 http://blog.tntsoft.com/rss/rss2.php 的最下方的一条中看到此现象,解决的方法是做两件事情:
1.把产生blog的主页php主程序设语言为UTF-8,(charset="utf-8")
2.把产生RSS2 XML文件的程序里设定encoding为UTF-8(<?xml version="1.0" encoding="UTF-8"?>
这样就可以了. |