国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > PHP > 正文

網頁編輯器fckeditor php上傳文件重命名的設置

2024-07-21 02:53:27
字體:
來源:轉載
供稿:網友
我使用的fckeditor版本是fckeditor2.6.4. fckeditor默認上傳文件不沒有重命名的,這樣的話就很麻煩,有時上傳中文的文件或者名稱重復的文件就很惱火。
 
這里經過摸索:找到了一個重命名的方法,大家看看好不好使。 
首先:我希望上傳的文件根據日期來組織文件夾 
請修改editor/editor/filemanager/connectors/php文件夾下的:config.php文件 
找到如下的內容: 
// Path to user files relative to the document root. 
$Config['UserFilesPath'] = 
修改為: 
// Path to user files relative to the document root. 
$Config['UserFilesPath'] = '/uploadfiles/'.date("Ym")."/" ; 
這樣上傳的文件就按照日期存放了。 
其次:重命名 
請修改該文件夾下的io.php文件 
找到: 
// Do a cleanup of the file name to avoid possible problems 
function SanitizeFileName( $sNewFileName ) 

global $Config ; 
$sNewFileName = stripslashes( $sNewFileName ) ; 
// Replace dots in the name with underscores (only one dot can be there... security issue). 
if ( $Config['ForceSingleExtension'] ) 
 $sNewFileName = preg_replace( '///.(?![^.]*$)/', '_', $sNewFileName ) ; 
// Remove / / | : ? * " < > 
$sNewFileName = preg_replace( '/////|///|//||//:|//?|//*|"|<|>/', '_', $sNewFileName ); 
return $sNewFileName ; 

修改為: 
// Do a cleanup of the file name to avoid possible problems 
function SanitizeFileName( $sNewFileName ) 

global $Config ; 
$sNewFileName = stripslashes( $sNewFileName ) ; 
// Replace dots in the name with underscores (only one dot can be there... security issue). 
if ( $Config['ForceSingleExtension'] ) 
 $sNewFileName = preg_replace( '///.(?![^.]*$)/', '_', $sNewFileName ) ; 
$sExtension = substr( $sNewFileName, ( strrpos($sNewFileName, '.') + 1 ) ) ; 
$sNewFileName = my_setfilename().'.'.$sExtension; 
return $sNewFileName ; 

function my_setfilename(){ 
$gettime = explode(' ',microtime()); 
$string = 'abcdefghijklmnopgrstuvwxyz0123456789'; 
$rand = ''; 
for ($x=0;$x<12;$x++) 
 $rand .= substr($string,mt_rand(0,strlen($string)-1),1); 
return date("ymdHis").substr($gettime[0],2,6).$rand; 

這樣上傳的文件就可以實現重命名了。

注:相關教程知識閱讀請移步到編輯器頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 克山县| 安乡县| 开阳县| 霸州市| 赤峰市| 诏安县| 调兵山市| 新竹市| 东乡| 高阳县| 年辖:市辖区| 肥西县| 封开县| 南丹县| 永福县| 英德市| 杨浦区| 奈曼旗| 兴业县| 巴里| 罗源县| 延寿县| 东乌| 邵武市| 西华县| 绵竹市| 浪卡子县| 巩义市| 同江市| 杨浦区| 福海县| 泾川县| 股票| 仲巴县| 泰兴市| 锦屏县| 哈密市| 云阳县| 枣强县| 象山县| 洞口县|