ftp_rmdir - 디렉토리를 제거합니다.

ftp_rmdir - 디렉토리를 제거합니다.

 

설명 ¶

 

bool ftp_rmdir ( resource $ftp_stream , string $directory )

지정된 directoryFTP 서버에서 제거합니다 .

 

매개 변수 ¶

 

ftp_stream

FTP 연결의 링크 식별자입니다.

 

directory

삭제할 디렉토리입니다. 빈 디렉토리에 대한 절대 또는 상대 경로 여야합니다.

 

반환 값 ¶

 

반환 값 TRUE성공 또는 FALSE실패.

 

예 ¶

 

Example # 1 ftp_rmdir () 예제

 

<?php

 

$dir = 'www/';

 

// set up basic connection

$conn_id = ftp_connect($ftp_server);

 

// login with username and password

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);

 

// try to delete the directory $dir

if (ftp_rmdir($conn_id, $dir)) {

    echo "Successfully deleted $dir\n";

} else {

    echo "There was a problem while deleting $dir\n";

}

 

ftp_close($conn_id);

 

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
PHP 9년 전 조회 3,212
PHP 9년 전 조회 2,132
PHP 9년 전 조회 1,801
PHP 9년 전 조회 2,000
PHP 9년 전 조회 2,215
PHP 9년 전 조회 2,446
PHP 9년 전 조회 2,311
PHP 9년 전 조회 2,855
PHP 9년 전 조회 2,237
PHP 9년 전 조회 2,126
PHP 9년 전 조회 2,510
PHP 9년 전 조회 2,251
PHP 9년 전 조회 2,275
PHP 9년 전 조회 2,162
PHP 9년 전 조회 2,629
PHP 9년 전 조회 3,283
PHP 9년 전 조회 2,774
jQuery 9년 전 조회 2,284
jQuery 9년 전 조회 2,588
jQuery 9년 전 조회 2,322
jQuery 9년 전 조회 2,163
PHP 9년 전 조회 2,321
PHP 9년 전 조회 2,304
PHP 9년 전 조회 4,063
PHP 9년 전 조회 3,314
PHP 9년 전 조회 2,695
PHP 9년 전 조회 2,653
PHP 9년 전 조회 2,484
PHP 9년 전 조회 2,312
PHP 9년 전 조회 2,474