최신 웹 개발 튜토리얼
 

PHP ftp_rename() Function

<참고 PHP FTP

FTP 서버에있는 파일의 이름을 바꿉니다 :

<?php
// connect and login to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);

$old_file = "oldfile.txt";
$new_file = "newfile.txt";

// try to rename $old_file to $new_file
if (ftp_rename($ftp_conn, $old_file, $new_file))
  {
  echo "Renamed $old_file to $new_file";
  }
else
  {
  echo "Problem renaming $old_file to $new_file";
  }

// close connection
ftp_close($ftp_conn);
?>

정의 및 사용

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

통사론

ftp_rename( ftp_connection,oldname,newname );

매개 변수 기술
ftp_connection 필요합니다. 사용하는 FTP 연결을 지정합니다
oldname 필요합니다. 이름을 바꿀 파일이나 디렉토리를 지정합니다
newname 필요합니다. 파일이나 디렉토리의 새 이름을 지정합니다

기술적 세부 사항

반환 값 : 성공할 경우 TRUE를, 실패 할 경우 FALSE를 반환
PHP 버전 : 4+

<참고 PHP FTP