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

首頁 > 網站 > 軟件應用 > 正文

fckeditor php上傳文件重命名的設置

2024-09-06 19:16:32
字體:
來源:轉載
供稿:網友
這里經過摸索:找到了一個重命名的方法,大家看看好不好使。
首先:我希望上傳的文件根據日期來組織文件夾
請修改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;
}
這樣上傳的文件就可以實現重命名了。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 瓦房店市| 泾阳县| 芦溪县| 青田县| 康定县| 浏阳市| 潜山县| 广西| 威海市| 七台河市| 吉水县| 德阳市| 土默特右旗| 阳朔县| 北碚区| 东源县| 开化县| 康保县| 五大连池市| 利津县| 吐鲁番市| 紫阳县| 宜州市| 休宁县| 中山市| 冕宁县| 四子王旗| 阜新市| 邵阳县| 马关县| 元阳县| 翁源县| 色达县| 昭平县| 庆阳市| 军事| 天台县| 惠东县| 剑河县| 佛坪县| 邯郸县|