최신 웹 개발 튜토리얼
 

PHP ftp_nb_fget() Function

<참고 PHP FTP

FTP 서버에서 파일을 다운로드하고 열려있는 로컬 파일에 저장 (non-blocking) :

<?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);

$server_file = "somefile.txt";

// open local file to write to
$local_file = "local.txt";
$fp = fopen($local_file,"w");


// initiate download
$d = ftp_nb_fget($ftp_conn, $fp, $server_file, FTP_BINARY)

while ($d == FTP_MOREDATA)
  {
  // do whatever you want
  // continue downloading
  $d = ftp_nb_continue($ftp_conn);
  }

if ($d != FTP_FINISHED)
  {
  echo "Error downloading $server_file";
  exit(1);
  }

// close connection and file handler
ftp_close($ftp_conn);
fclose($fp);
?>

정의 및 사용

ftp_nb_fget() 함수를 얻는다 (downloads) FTP 서버에서 파일을, 그리고 열려있는 로컬 파일로 저장합니다 (non-blocking) .

팁 :이 기능 (반대로 ftp_fget() 파일이 다운로드되는 동안 다른 작업을 수행 할 수 있도록), 비동기 적으로 파일을 검색합니다.


통사론

ftp_nb_fget( ftp_connection,open_file,server_file,mode,startpos );

매개 변수 기술
ftp_connection 필요합니다. 사용하는 FTP 연결을 지정합니다
open_file 필요합니다. 우리는 데이터를 저장하는 열린 로컬 파일을 지정합니다
server_file 필요합니다. 다운로드 서버 파일을 지정합니다
mode 필요합니다. 전송 모드를 지정합니다. 가능한 값 : FTP_ASCII 또는 FTP_BINARY
startpos 선택 과목. 원격 파일의 위치에서 다운로드를 시작합니다 지정

기술적 세부 사항

반환 값 : 이 기능은 다음 값 중 하나를 반환 :
  • FTP_FAILED은 (send/receive failed)
  • FTP_FINISHED (send/receive completed)
  • FTP_MOREDATA은 (send/receive in progress)
PHP 버전 : 4.3

<참고 PHP FTP