PHP ftp_fput() 函数
实例
打开本地文件,上传到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);
// open file for reading
$file = "test.txt";
$fp = fopen($file,"r");
// upload file
if (ftp_fput($ftp_conn, "somefile.txt", $fp, FTP_ASCII))
{
echo "Successfully uploaded $file.";
}
else
{
echo "Error uploading $file.";
}
// close this 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);
// open file for reading
$file = "test.txt";
$fp = fopen($file,"r");
// upload file
if (ftp_fput($ftp_conn, "somefile.txt", $fp, FTP_ASCII))
{
echo "Successfully uploaded $file.";
}
else
{
echo "Error uploading $file.";
}
// close this connection and file handler
ftp_close($ftp_conn);
fclose($fp);
?>
定义和用法
ftp_fput() 函数上传一个已经打开的文件到 FTP 服务器。
若成功则返回 true,失败则返回 false。
语法
ftp_fput(ftp_conn, remote_file, open_file, mode, startpos);
参数值
参数 | 描述 |
---|---|
ftp_conn | 必需。规定要使用的 FTP 连接(FTP 连接的标识符)。 |
remote_file | 必需。上传到服务器上的文件名。 |
open_file | 必需。规定所打开文件的句柄。 |
mode |
必需。规定传输模式。可能的值有:
|
startpos | 必需。规定在本地文件中的何处开始拷贝。默认是 0。 |
说明
参数 resume 仅适用于 PHP 4.3.0 以上版本
技术细节
返回值: | 如果成功则返回 TRUE,如果失败则返回 FALSE |
---|---|
PHP 版本: | 4+ |
PHP 更新日志: | PHP 7.3 - mode 参数变为可选参数。 PHP 4.3 - 添加了 startpos 参数。 |