PHP ftp_fget() 函数
实例
从 FTP 服务器下载文件,并将其保存到打开的本地文件中:
<?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");
// download server file and save it to open local file
if (ftp_fget($ftp_conn, $fp, $server_file, FTP_ASCII, 0))
{
echo "Successfully written to $local_file.";
}
else
{
echo "Error downloading $server_file.";
}
// close connection and file handler
ftp_close($ftp_conn);
fclose($fp);
?>
// 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");
// download server file and save it to open local file
if (ftp_fget($ftp_conn, $fp, $server_file, FTP_ASCII, 0))
{
echo "Successfully written to $local_file.";
}
else
{
echo "Error downloading $server_file.";
}
// close connection and file handler
ftp_close($ftp_conn);
fclose($fp);
?>
定义和用法
ftp_fget() 函数从 FTP 服务器上下载一个文件并保存到本地一个已经打开的文件中。
若成功则返回 true,失败则返回 false。
语法
ftp_fget(ftp_conn, open_file, server_file, mode, startpos);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
open_file | 必需。指定我们存储数据的打开的本地文件 |
server_file | 必需。指定要下载的服务器文件 |
mode | 可选。指定传输模式。 可能的值:FTP_ASCII 或 FTP_BINARY |
startpos | 可选。指定远程文件中开始下载的位置 |
说明
参数 resume 仅适用于 PHP 4.3.0 以上版本
技术细节
返回值: | 如果成功则返回 TRUE,如果失败则返回 FALSE |
---|---|
PHP 版本: | 4+ |
PHP 更新日志: | PHP 7.3 - mode 参数变为可选参数。 PHP 4.3 - 添加了 startpos 参数。 |