首页 > 网站 > 建站经验 > 正文

Ecshop商品编辑器上传中文名图片产生乱码

2024-04-25 20:32:50
字体:
来源:转载
供稿:网友

在后台上传商品图片的时候,如果你选择一个中文名称的图片,那么上传后会产生乱码,导致图片显示不出来。

下面说一种解决办法:

使用“年月日时分秒+6个随机字符”做为文件名,如20101016135632jusv3x.jpg

打开文件/includes/fckeditor/editor/filemanager/connectors/php/commands.php

找到

$sFileName=$oFile['name'];

修改为

$string='abcdefghijklmnopqrstuvwxyz0123456789';

$rand='';

for($x=0;$x<6;$x++){

mt_srand();

$rand.=substr($string,mt_rand(0,strlen($string)-1),1);

}

$sFileName=date('YmdHis').$rand.".".strtolower(array_pop(explode(".",$oFile['name'])));

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表