wordpress文件上传到服务器改变文件名
发布:smiling 来源: PHP粉丝网 添加日期:2014-03-23 21:24:56 浏览: 评论:0
没有人能保证自己上传的文件时不会存在相同名字的,那么要如何解决此问题呢,wordpress博客中我们可以利用wp_handle_upload_prefilter来解决此问题,下面演示一个实例.
例,利用图片高与宽生+文件名成名字,代码如下:
- add_filter( 'wp_handle_upload_prefilter', 'modify_uploaded_file_names', 20);
- function modify_uploaded_file_names( $image ) {
- // Get default name of uploaded file and set to variable
- $imagename = $image['name'];
- // Case switch for multiple file extensions
- switch ( $image['type'] ) {
- case 'image/jpeg' :
- $suffix = 'jpg';
- break;
- case 'image/png' :
- $suffix = 'png';
- break;
- case 'image/gif' :
- $suffix = 'gif';
- break;
- }
- // Get size of uploaded image and assign to variable
- $imagesize = getimagesize($image);
- // Re-structure uploaded image name
- $image['name'] = "{$imagesize[0]}x{$imagesize[1]}-{$imagename}.{$suffix}";
- return $image;
- }
例,利用年月日时分秒+千位毫秒整数
以wordpress 3.2.1为例,打开“wp-admin/includes/file.php” www.phpfensi.com文件,找到第327行这段代码:
- // Move the file to the uploads dir
- $new_file = $uploads['path'] . "/$filename";
- if ( false === @ move_uploaded_file( $file['tmp_name'], $new_file ) )
- return $upload_error_handler( $file, sprintf( __('The uploaded file could not be moved to %s.' ), $uploads['path'] ) );
将其修改为如下代码:
- // Move the file to the uploads dir
- $new_file = $uploads['path'] . "/".date("YmdHis").floor(microtime()*1000).".".$ext;
- if ( false === @ move_uploaded_file( $file['tmp_name'], $new_file ) )
- return $upload_error_handler( $file, sprintf( __('The uploaded file could not be moved to %s.' ), $uploads['path'] ) );
保存,重新上传文件,这样,新上传的文件,就会自动保存为“年月日时分秒+千位毫秒整数”的新文件名,并保存到相应的年月文件夹之下了.
提醒你,这两种方法个人觉得后者更适合我们一些哦,因为按年月日时分秒+千位毫秒整数不会出现重复名字,而按图片高与宽生+文件名成名字还有可能存在重复名字.
Tags: wordpress 文件名 服务器 文件
相关文章
- ·WordPress初级教程1:什么是博客?(2013-11-11)
- ·WordPress初级教程-2: 什么是WordPress?(2013-11-11)
- ·WordPress初级教程-3: WordPress的功能和特点(2013-11-11)
- ·WordPress初级教程-4: 选择WordPress博客的主机和域名(2013-11-11)
- ·WordPress初级教程-5: 安装WordPress(2013-11-11)
- ·WordPress初级教程-6: 本地安装WordPress(2013-11-11)
- ·WordPress初级教程-7: 一个数据库中安装多个WordPress博客(2013-11-11)
- ·WordPress初级教程-8: WordPress控制面板/ Dashboard(2013-11-11)
- ·WordPress初级教程-9: WordPress用户设置/ Users(2013-11-11)
- ·WordPress初级教程-10: WordPress博客配置/ Settings(2013-11-11)
- ·关于wordpress上传图片不显示的原因(2013-11-11)
- ·WordPress程序的脆弱点你知道吗 (2013-11-11)
- ·总结八大Wordpress网站百度收录实现秒收的方法绝招 (2013-11-11)
- ·WordPress如何网站投稿者也可以上传图片(2014-03-18)
- ·WordPress怎么修改新用户注册邮件内容(2014-03-18)
- ·WordPress怎么添加前台注册功能(2014-03-18)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)