In php how to display chinese character?

2019-08-28 02:16发布

what I build now is I grabbing from RSS feed in chinese RSS website, but once I echo out is blank, my code was work on english RSS, I try a lot of decode,iconv, header("Content-Type: text/html; charset=utf-8");, but still the same cannot display any chinese word on my screen.

here is my coding:

header("Content-Type: text/html; charset=utf-8");
function getrssfeed($feed_url){    
$Current = date("Y-m-d" ,strtotime("now"));
$content = file_get_contents($feed_url);    
$xml = new SimpleXmlElement($content);
$body = "";
    foreach($xml->channel->item as $entry){     
        $body .= get_html_translation_table(htmlspecialchars_decode(strip_tags($Current ." ". $entry->description))) . "\n\n";      
        //$result = iconv('UTF-8', 'ISO-8859-1//TRANSLIT//IGNORE', $body);
        $i++;       
        if($i==5) {
            break;      
        }       
    }
echo $body;
}

getrssFeed("http://news.baidu.com/n?cmd=1&class=enternews&tn=rss");

Can you guy help me how to solve my problem ?

thank you

3条回答
家丑人穷心不美
2楼-- · 2019-08-28 02:45

Two things you need to do

  1. Set document type or header as

content="text/html;charset=utf-8"

  1. Save those user Chinese characters in database with field collation as utf8_general_ci
查看更多
霸刀☆藐视天下
3楼-- · 2019-08-28 02:52

may be you can use this function with

mb_convert_encoding

,but at the same time ,you should attention the native document charset must be utf-8 or gb2312

查看更多
Bombasti
4楼-- · 2019-08-28 03:01

in your HTML header put this

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" ></meta>
查看更多
登录 后发表回答