首頁 >後端開發 >php教程 >php自動重新命名檔案的例子

php自動重新命名檔案的例子

WBOY
WBOY原創
2016-07-25 08:52:321065瀏覽
  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. ?>
复制代码


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn