首页 > 技术文章 > 百度Ueditor 图片上传无反应,显示上传0张,不能点确定

tlxma 2014-06-27 11:10 原文

解决办法:

\Data\Ueditor\php\Uploader.class.php

190行左右

/**
     * 获取文件扩展名
     * @return string
     */
    private function getFileExt()
    {
        date_default_timezone_set("PRC");
        return strtolower( strrchr( $this->file[ "name" ] , '.' ) );
    }

添加了date_default_timezone_set("PRC");

 

我也是网上找到的,出处:

http://blog.sina.com.cn/s/blog_546f2daa01019mi5.html

推荐阅读