PHP ftp_fget() 函数
PHP ftp_fget() 函数
完整的 PHP FTP 参考手册定义和用法
ftp_fget() 函数从 FTP 服务器上下载一个文件并保存到本地一个已经打开的文件中。
如果成功,该函数返回 TRUE。如果失败,则返回 FALSE。
语法
ftp_fget(ftp_connection,local,remote,mode,resume)
参数 | 描述 |
---|---|
ftp_connection | 必需。规定要使用的 FTP 连接。 |
local | 必需。规定要保存内容的本地一个已经打开的文件。 |
remote | 必需。规定从中复制内容的文件的路径。 |
mode | 必需。规定传输模式。可能的值:
|
resume | 可选。规定在远程文件中的何处开始复制。默认是 0。 |
实例
本实例从 "source.txt" 中复制文本到 "target.txt" 中:
<?php
$source = "source.txt";
$target = fopen("target.txt", "w");
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_fget($conn,$target,$source,FTP_ASCII);
ftp_close($conn);
?>
$source = "source.txt";
$target = fopen("target.txt", "w");
$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");
ftp_fget($conn,$target,$source,FTP_ASCII);
ftp_close($conn);
?>
完整的 PHP FTP 参考手册
相关文章
- PHP 变量
- PHP echo 和 print 语句
- PHP 数据类型
- PHP 字符串
- PHP 数组
- PHP 包含文件 include 和 require 语句
- PHP 文件处理
- PHP Cookie
- PHP 错误处理
- PHP array_intersect_assoc() 函数
- PHP array_multisort() 函数
- PHP array_reduce() 函数
- PHP array_uintersect_assoc() 函数
- PHP array_uintersect_uassoc() 函数
- PHP array_walk() 函数
- PHP array_walk_recursive() 函数
- PHP count() 函数
- PHP in_array() 函数
- PHP usort() 函数
- PHP 5 Filesystem 函数