ftp_get
ftp_get
(PHP 4, PHP 5, PHP 7)
ftp_get - 从FTP服务器下载文件
描述
bool ftp_get ( resource $ftp_stream , string $local_file , string $remote_file , int $mode [, int $resumepos = 0 ] )
ftp_get()
从FTP服务器检索远程文件,并将其保存到本地文件中。
参数
ftp_stream
FTP连接的链接标识符。
local_file
本地文件路径(如果文件已经存在,将被覆盖)。
remote_file
远程文件路径。
mode
传输模式。必须是FTP_ASCII
或者FTP_BINARY
。
resumepos
在开始从远程文件中下载的位置。
返回值
成功时返回TRUE
或失败时返回FALSE
。
例子
示例#1 ftp_get()示例
<?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
?>