ftp_exec - FTP 서버에서 명령 실행을 요청합니다. > 개발자팁

개발자팁

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

ftp_exec - FTP 서버에서 명령 실행을 요청합니다. 정보

PHP ftp_exec - FTP 서버에서 명령 실행을 요청합니다.

본문

ftp_exec - FTP 서버에서 명령 실행을 요청합니다.

 

설명 ¶

 

bool ftp_exec ( resource $ftp_stream , string $command )

commandFTP 서버 에 SITE EXEC 요청을 보냅니다 .

 

매개 변수 ¶

 

ftp_stream

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

 

command

실행할 명령.

 

반환 값 ¶

 

TRUE명령이 성공하면 반환 합니다 (서버가 보낸 응답 코드 : 200 ). 그렇지 않으면를 반환합니다 FALSE.

 

예 ¶

 

Example # 1 ftp_exec () 예제

 

<?php

 

// variable initialization

$command = 'ls -al >files.txt';

 

// 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);

 

// execute command

if (ftp_exec($conn_id, $command)) {

    echo "$command executed successfully\n";

} else {

    echo "could not execute $command\n";

}

 

// close the connection

ftp_close($conn_id);

 

?>

추천
0
  • 복사

댓글 0개

© SIRSOFT
현재 페이지 제일 처음으로