欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php ckeditor上传图片文件名乱码解决方法

程序员文章站 2022-06-15 23:23:35
打开editor/filemanager/connectors/php目录下commands.php,找到fileupload函数,在复制代码 代码如下:$sextensi...
打开editor/filemanager/connectors/php目录下commands.php,找到fileupload函数,在

复制代码 代码如下:

$sextension = substr( $sfilename, ( strrpos($sfilename, '.') + 1 ) ) ;
$sextension = strtolower( $sextension ) ;


后添加

复制代码 代码如下:

$sfilename = rand(0,100).".".$sextension;


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