VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php+CKFinder上传中文名文件乱码问题的解决方法

一个常用的东西,php+CKFinder上传中文名文件乱码问题的解决方法 这种问题主要是上传中文文件名的图片时出现乱码的解决办法。

上传中文名文件乱码问题

在ckfinder/config.php中找到如下一段配置代码:

  1. /*  
  2. If you have iconv enabled (visit http://php.net/iconv for more information),  
  3. you can use this directive to specify the encoding of file names in your  
  4. system. Acceptable values can be found at:  
  5. http://www.gnu.org/software/libiconv/  
  6.  
  7. Examples:  
  8. $config['FilesystemEncoding'] = 'CP1250';  
  9. $config['FilesystemEncoding'] = 'ISO-8859-2';  
  10. */ 
  11. $config['FilesystemEncoding'] = 'UTF-8'

将UTF-8修改为GB2312,上传后文件名正确了,但在CKEditor中显示的链接出现乱码,因为CKEditor所在页面使用的字符集是UTF-8,未去细究如何解决这个问题,采用了文件重命名的方案去替代解决。

上传文件重命名

修改ckfindercoreconnectorphpphp5CommandHandlerFileUpload.php 找到以下代码

  1. if ($sFileName != $sUnsafeFileName) {  
  2.   $iErrorNumber = CKFINDER_CONNECTOR_ERROR_UPLOADED_INVALID_NAME_RENAMED;  

在这段代码之后添加

  1. $sExtension=CKFinder_Connector_Utils_FileSystem::getExtension($sFileName);  
  2. $sFileName=date('YmdHis').'.'.$sExtension
  3.  



原文链接:http://www.phpfensi.com/php/20131114/144.html


相关教程