最新的Web开发教程
 

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参考