Home > php教程 > php手册 > PHP FCKEditor上传中文名称图片出错

PHP FCKEditor上传中文名称图片出错

WBOY
Release: 2016-06-13 09:56:30
Original
795 people have browsed it

FCKEditor编辑器是老外出的,对中文支持不好,如果我们直接利用中文文件名就会出错,或上传图片失败,下面我来介绍解决办法。

下面分享下这2种修改方式。

方法一、

 代码如下 复制代码
打开/editor/filemanager/connectors/php/commands.php,找到$sFileName = $oFile[¹name¹] ;在后面添加一行:$sFileName = iconv("utf-8","gbk",$sFileName);

  

方法二(推荐)、

 代码如下 复制代码

打开/editor/filemanager/connectors/php/commands.php,找到$sExtension = strtolower( $sExtension ) ;在后面添加一行:$sFileName = time().".".$sExtension;

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template