최신 웹 개발 튜토리얼
 

PHP ftp_exec() 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);

$command = "ls-al > somefile.txt";

// execute command
if (ftp_exec($ftp_conn,$command))
  {
  echo "$command executed successfully.";
  }
else
  {
  echo "Execution of $command failed.";
  }

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

정의 및 사용

ftp_exec() FTP 서버의 명령의 실행을위한 기능 요청.

통사론

ftp_exec( ftp_connection,command );

매개 변수 기술
ftp_connection 필요합니다. 사용하는 FTP 연결을 지정합니다
command 필요합니다. 실행할 명령을 지정합니다

기술적 세부 사항

반환 값 : 명령이 성공적으로 실행 된 경우 TRUE를 반환; 그렇지 않으면 FALSE
PHP 버전 : 4.0.3 이상 버전

<참고 PHP FTP