IT/php

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

조원태 2017. 2. 13. 01:11
반응형

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


?>

반응형