Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP의 ftp_raw() 함수

<시간/>

ftp_raw() 함수는 원시 명령을 FTP 서버에 보내는 데 사용됩니다.

구문

ftp_raw(con, command)

매개변수

  • - FTP 연결

  • 명령 − 실행할 명령

반환

ftp_raw() 함수는 서버의 응답을 문자열 배열로 반환합니다.

예시

다음은 예입니다 -

<?php
   $ftp_server = "192.168.0.4";
   $con = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
   ftp_raw($ftp_conn, "USER david");
   ftp_raw($ftp_conn, "PASS yourpassword");
   // close
   ftp_close($con);
?>