최신 웹 개발 튜토리얼
 

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

// try to send SITE command
if (ftp_site($ftp_conn, "chmod 777 serverfile.txt"))
  {
  echo "Command executed successfully";
  }
else
  {
  echo "Command failed";
  }

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

정의 및 사용

ftp_site() 함수는 FTP 서버에 FTP 사이트 명령을 보낸다.

참고 : 사이트의 명령은 서버에서 서버로 다양합니다. 그들은 같은 파일 권한 및 그룹 구성원으로 처리 OS 특정 기능에 유용합니다.

Tip: 사용할 수있는 사이트 명령을 보려면는 사용에서는 remotehelp 명령을 보내 ftp_raw() 함수를.

통사론

ftp_site( ftp_connection,command );

매개 변수 기술
ftp_connection 필요합니다. 사용하는 FTP 연결을 지정합니다
command 필요합니다. 사이트의 명령을 지정합니다 (this parameter is not escaped)

기술적 세부 사항

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

<참고 PHP FTP