欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php自动重命名文件的例子

程序员文章站 2022-05-12 17:31:51
...
  1. //自动重命名文件
  2. $file = dirname(__FILE__).'/新建 文本文档.txt';
  3. echo L_rename($file);
  4. function L_rename($file){
  5. $iCount = 0;
  6. $File_type = strrchr($file, '.');
  7. $FilePath = substr($file, 0, strrpos($file, '.'));
  8. while (true) {
  9. if (is_file($file)) {
  10. ++$iCount;
  11. $file = $FilePath . '('. $iCount .')' . $File_type;
  12. }else{
  13. break;
  14. }
  15. }
  16. if (fopen($file, 'w')) {$Msg = '创建成功 '.$file;}
  17. return $Msg;
  18. }
  19. ?>
复制代码