国产探花免费观看_亚洲丰满少妇自慰呻吟_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; 

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

注:相關教程知識閱讀請移步到編輯器頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 柘荣县| 石河子市| 深圳市| 岳阳市| 阳原县| 临清市| 全州县| 栾川县| 通渭县| 平远县| 色达县| 霍州市| 延安市| 崇文区| 蒙阴县| 那坡县| 阿勒泰市| 陇川县| 鄯善县| 岑溪市| 凭祥市| 汤原县| 莆田市| 吉安县| 同仁县| 柞水县| 汉川市| 新河县| 榆树市| 石河子市| 政和县| 温宿县| 双城市| 深水埗区| 茶陵县| 金阳县| 福鼎市| 大庆市| 綦江县| 阳谷县| 肇源县|