标题:PHP下FCKeditor上传文件时自动目录和重命名及中文文件名解决方案 出处:刘新修 时间:Thu, 02 Sep 2010 01:17:05 +0000 作者:刘新修 地址:http://liuxinxiu.com:80/s/2/ 内容: 修改两个文件:自动化目录:1、FCKeditor\editor\filemanager\browser\default\connectors\php\config.php $Config['UserFilesPath']='xxx'改为下 $time=time();$Config['UserFilesPath'] = '/custom/image/upload/'.date('Y',$time).'/'. date('m',$time) .'/'.date('d',$time).'/'; 重命名:2、FCKeditor\editor\filemanager\browser\default\connectors\php\commands.php // 在下列代码之后:// Get the extension.$sExtension = substr( $sFileName, ( strrpos($sFileName, '.') + 1 ) ) ;$sExtension = strtolower( $sExtension ) ; //添加如下语句,则会让所有上传的文件名以“时间+随机数”来重命名。//Rename filename$sFileName=date("Ymd_His_").rand(100,200).".".$sExtension; Generated by Bo-blog 2.1.1 Release