主页 > 编程资料 > WordPress >
发布时间:2015-09-26 作者:网络 阅读:257次

add_filter( 'wp_handle_upload_prefilter', 'custom_upload_name' );   

function custom_upload_name( $file )
{
   if ( !$ext )
        $ext = ltrim(strrchr($file['name'], '.'), '.');
   $file['name'] = date("YmdHis").rand(10,99).'.'.$ext;
   return $file;
}

假如你需要何随机10位数字的文件名。。。不要按时间来,将上面的命名规则修改为:

$file['name'] = rand(1000000000,9999999999).'.'.$ext;

保存后即可,需要的可以按照修改!

关键字词: