时时商务社区

标题: Gregarius中文日期格式问题解决办法 [打印本页]

作者: wx_pylelnL4    时间: 2018-2-14 09:24

            [U]复制代码[/U] 代码如下:
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://bbs.4435.cn/) Powered by Discuz! X3.2