Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 ftp_rename() 함수

<시간/>

ftp_rename() 함수는 FTP 서버에 있는 파일이나 디렉토리의 이름을 바꿉니다.

구문

ftp_rename(conn,oldname,newname);

매개변수

  • 연결 - FTP 연결

  • 이전 이름 − 이름을 바꿀 파일 또는 디렉터리입니다.

  • new_name − 파일 또는 디렉토리의 새 이름

반환

ftp_rename() 함수는 성공하면 TRUE를, 실패하면 FALSE를 반환합니다.

예시

다음은 예입니다 -

<?php
   $ftp_server = "192.168.0.4";
   $ftp_user = "jacob";
   $ftp_pass = "tywg61gh";
   $conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   $login = ftp_login($con, $ftp_user, $ftp_pass);
   $old_file = "demo.txt";
   $new_file = "new.txt";
   // rename
   if (ftp_rename($conn, $old_file, $new_file)) {
      echo "Renamed $old_file to $new_file";
   } else {
      echo "Cannot rename $old_file to $new_file";
   }
   // close
   ftp_close($conn);
?>
닫기