目录

PHP ftp_fput() 函数

❮ PHP FTP 参考

示例

打开本地文件,并将其上传到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);
?>

定义和用法

ftp_fput() 函数从打开的文件上传并将其保存到 FTP 服务器上的文件中。


语法

ftp_fput( ftp_conn, remote_file, open_file, mode, startpos);

参数值

Parameter Description
ftp_conn Required. Specifies the FTP connection to use
remote_file Required. Specifies the file path to upload to
open_file Required. Specifies an open local file. Reading stops at end of file
mode Optional. Specifies the transfer mode. Possible values: FTP_ASCII or FTP_BINARY
startpos Optional. Specifies the position in the remote file to start uploading to


技术细节

返回值: TRUE 成功,FALSE 失败
PHP 版本: 4+
PHP 变更日志: PHP 7.3 - 的模式参数变为可选。
PHP 4.3 - 的起始位置添加了参数。

❮ PHP FTP 参考