php创建文件时存在文件自动重命名实现方法
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-04 14:53:48 浏览: 评论:0
php创建文件时存在文件自动重命名实现方法,实例代码如下:
- <?php
- function createfile($filename, $content = '')
- {
- $fp = file_put_contents($filename, $content);
- }
- // 要创建的文件名称
- $filename = 'www.txt';
- if(file_exists($filename))
- {
- // 打开当前目录
- $handle = opendir('./');
- $fileinfo = pathinfo($filename);
- //print_r($fileinfo);
- $files = array();
- while (false !== ($file = readdir($handle)))
- {
- if(preg_match_all("/{$fileinfo['filename']}(d*).{$fileinfo['extension']}/i", $file, $match))
- {
- $max = max($match[1]);
- if($max)
- {
- $createfile = $fileinfo['filename'] . ($max + 1) . '.' . $fileinfo['extension'];
- }
- else
- {
- $createfile = $fileinfo['filename'] . '1.' . $fileinfo['extension'];
- }
- }
- }
- createfile($createfile);
- }
- else
- {
- createfile($filename);
- }
- ?>
使用临时文件作记数器,方法二,实例代码如下:
- <?php
- function createfile($filename, $content = '')
- {
- if(file_exists($filename . '.tmp'))
- {
- $num = (int) file_get_contents($filename . '.tmp') + 1;
- $fileinfo = pathinfo($filename);
- file_put_contents($fileinfo['filename'] . '(' . $num . ')' .$fileinfo['extension'], $content);
- file_put_contents($filename . '.tmp', $num);
- }
- else
- {
- file_put_contents($filename, $content);
- file_put_contents($filename . '.tmp', 1);
- }
- }
- createfile('test.txt');
- ?>
Tags: php创建文件 自动重命名
- 上一篇:php读取txt文件中文乱码解决方法
- 下一篇:php读取文件的几个常用函数
相关文章
- ·php创建文件函数(2014-08-15)
- ·PHP创建/删除/复制文件夹、文件(2019-08-12)
- ·PHP创建文件,并向文件中写入数据,覆盖,追加的实现代码(2019-11-11)
- ·php的mkdir()函数创建文件夹比较安全的权限设置方法(2021-03-25)
- ·PHP创建文件,并向文件中写入数据,覆盖,追加的实现代码(2021-07-21)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)