Gregarius中文日期格式问题解决办法


function rss_locale_date ($fmt, $ts, $addTZOffset = true) {  
    if (isset($_SERVER["WINDIR"])) {  
        //%e doesnt' exists under windows!  
        $fmt=str_replace(”%e”,”%#d”,$fmt);  
    }  

    if ($addTZOffset) {  
        return iconv(”UTF-8″, “utf-8″, strftime($fmt, $ts +3600 * getConfig('rss.config.tzoffset')));  
        //return utf8_encode(strftime($fmt, $ts +3600 * getConfig('rss.config.tzoffset')));  
    }  
    return iconv(”UTF-8″, “utf-8″, strftime($fmt, $ts));  
    //return utf8_encode(strftime($fmt, $ts));  
}

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/37af8277512707bd1be240e9dcc141d6.html