최신 웹 개발 튜토리얼
 

PHP ftp_raw() Function

<참고 PHP FTP

서버를 FTP 및 명령을 실행하는 연결 :

<?php
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");

// the two lines below is the same as: ftp_login($ftp_conn,"john","secretpassword");
ftp_raw($ftp_conn, "USER john");
ftp_raw($ftp_conn, "PASS secretpassword");

?>

정의 및 사용

ftp_raw() 함수는 FTP 서버에 원시 명령을 보낸다.

통사론

ftp_raw( ftp_connection,command );

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

기술적 세부 사항

반환 값 : 문자열의 배열로서 서버의 응답을 반환
PHP 버전 : 5+

<참고 PHP FTP