简体   繁体   中英

In php how to display chinese character?

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

在你的HTML标题中放这个

<meta http-equiv="Content-Type" content="text/html;charset=utf-8" ></meta>

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM