(PHP 4, PHP 5)
ftp_get — 从 FTP 服务器上下载一个文件
$ftp_stream
, string $local_file
, string $remote_file
, int $mode
[, int $resumepos
] )
ftp_get() 函数用来下载 FTP 服务器上由
remote_file
参数指定的文件,并保存到由参数
local_file
指定的本地文件。传送模式参数
mode
只能为 (文本模式) FTP_ASCII
或
(二进制模式) FTP_BINARY
中的其中一个。
Note:
参数
resumepos
仅在适用于 PHP 4.3.0 以上版本.
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #1 ftp_get() 例子
<?php
// define some variables
$local_file = 'local.zip';
$server_file = 'server.zip';
// connect to the FTP server
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// try to download
if (ftp_get($conn_id, $local_file, $server_file, FTP_BINARY)) {
echo "Successfully written to $local_file\n";
} else {
echo "There was a problem\n";
}
// close the connection
ftp_close($conn_id);
?>
ftp_stream
The link identifier of the FTP connection.
local_file
The local file path (will be overwritten if the file already exists).
remote_file
The remote file path.
mode
The transfer mode. Must be either FTP_ASCII
or
FTP_BINARY
.
resumepos
The position in the remote file to start downloading from.
成功时返回 TRUE
, 或者在失败时返回 FALSE
.
Example #2 ftp_get() example
<?php
// define some variables
$local_file = 'local.zip';
$server_file = 'server.zip';
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
// try to download $server_file and save to $local_file
if (ftp_get($conn_id, $local_file, $server_file, FTP_BINARY)) {
echo "Successfully written to $local_file\n";
} else {
echo "There was a problem\n";
}
// close the connection
ftp_close($conn_id);
?>
版本 | 说明 |
---|---|
4.3.0 |
resumepos was added.
|