ftp_put
(PHP 4, PHP 5, PHP 7, PHP 8)
ftp_put — 上传文件到 FTP 服务器
说明
ftp_put(
FTP\Connection
string
string
int
int
): bool
FTP\Connection
$ftp,string
$remote_filename,string
$local_filename,int
$mode = FTP_BINARY,int
$offset = 0): bool
ftp_put() 函数用来上传指定的本地文件到 FTP 服务器。
参数
ftp-
FTP\Connection 实例。
remote_filename-
远程文件路径。
local_filename-
本地文件路径。
mode-
传送模式,只能为
FTP_ASCII(文本模式)或FTP_BINARY(二进制模式)。 offset-
指定开始上传的位置,一般用来文件续传。
更新日志
| 版本 | 说明 |
|---|---|
| 8.1.0 |
现在 ftp 参数接受 FTP\Connection
实例,之前接受 resource。
|
| 7.3.0 |
mode 参数为可选,之前版本中为必选。
|
示例
示例 #1 ftp_put() 实例
<?php
$file = 'somefile.txt';
$remote_file = 'readme.txt';
// set up basic connection
$ftp = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);
// upload a file
if (ftp_put($ftp, $remote_file, $file, FTP_ASCII)) {
echo "successfully uploaded $file\n";
} else {
echo "There was a problem while uploading $file\n";
}
// close the connection
ftp_close($ftp);
?>参见
- ftp_pasv() - 返回当前 FTP 被动模式是否打开
- ftp_fput() - 上传已打开的文件到 FTP 服务器
- ftp_nb_fput() - 将文件存储到 FTP 服务器 (非阻塞)
- ftp_nb_put() - 存储一个文件至 FTP 服务器(non-blocking)