ftp_get() 함수는 FTP 서버에서 파일을 다운로드하여 로컬 파일에 저장하는 데 사용됩니다.
구문
ftp_fget(con,local_file,server_file,mode,startpos);
매개변수
-
콘 - FTP 연결
-
로컬_파일 − 데이터가 저장되는 파일
-
서버_파일 − 다운로드할 서버 파일
-
모드 - 전송 모드
-
시작 위치 − 다운로드를 시작할 위치입니다. PHP 4.3.0에 추가되었습니다.
반환
ftp_fget() 함수는 성공하면 TRUE를, 실패하면 FALSE를 반환합니다.
예시
다음은 서버 파일 "demo.txt"를 다운로드하여 로컬 파일 "new.txt"에 저장하는 예입니다 -
<?php $ftp_server="192.168.0.4"; $ftp_user="amit"; $ftp_pass="tywg61gh"; $con = ftp_connect($ftp_server) or die("Could not connect to $ftp_server"); $login = ftp_login($con, $ftp_user, $ftp_pass); $my_serverfile = "demo.txt"; $my_file = "new.txt"; if (ftp_fget($con, $my_file, $my_serverfile, FTP_ASCII, 0)) { echo "Written to local file!"; } else { echo "Error in downloading the server file!"; } ftp_close($con); fclose($file_pointer); ?>