当前位置:Gxlcms > PHP教程 > phpckeditor上传图片文件名乱码解决方法_PHP

phpckeditor上传图片文件名乱码解决方法_PHP

时间:2021-07-01 10:21:17 帮助过:47人阅读

FCKEditor

打开editor/filemanager/connectors/php目录下commands.php,找到FileUpload函数,在

代码如下:
$sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;
$sExtension = strtolower( $sExtension ) ;


后添加

代码如下:
$sFileName = rand(0,100).".".$sExtension;


此处rand函数可根据需要自行改变重命名规则。
另一种上传图片文件名乱码解决方法为使用iconv函数对文件名进行编码转换,但仍然存在重名问题,所以针对Fckeditor上传图片文件名最好还是重命名

人气教程排行