<?php require("http://php.wilson.gs"); // 回首页 echo "http://php.wilson.gs/bible/function.php : 函数:ftp_get()"; |
函数:ftp_get() |
ftp_get下载文件。 语法: boolean ftp_get(int ftp_stream, string local_file, string remote_file, int mode); 返回值: 布尔值 函数种类: 网络系统
本函数用来下载指定的文件。参数 ftp_stream 为 FTP 的连接代码。参数 local_file 为欲存成本地端的文件名。参数 remote_file 为欲下载的文件名。参数 mode 的值有 FTP_ASCII 及 FTP_BINARY 二种,分别表示文字档宁或者是二进位文件。成功则返回 true 值,失败则返回 false 值。
整理: (www.phpernote.com)
|