하루정리

PHP 파일명 변경하기 본문

개발노트/PHP

PHP 파일명 변경하기

하루84 2022. 7. 14. 13:24

$dirs = "/home/web/online_file/";

for($i=0; $i<count($files2);$i++) { 
  $chg_file = "del_".$files2[$i];

  if(rename($dirs.$files2[$i], $dirs.$chg_file)) {
    echo $chg_file."<br>";
  }
}