Php/docs/function.ftp-fput

来自菜鸟教程
跳转至:导航、​搜索

ftp_fput

(PHP 4, PHP 5, PHP 7)

ftp_fput上传一个已经打开的文件到 FTP 服务器


说明

ftp_fput ( resource $ftp_stream , string $remote_file , resource $handle , int $mode [, int $startpos = 0 ] ) : bool

ftp_fput() 函数用来上传一个在已经打开的文件中的数据到 FTP 服务器。


参数

ftp_stream
FTP 连接的链接标识符。
remote_file
远程文件路径。
handle
打开的本地文件句柄,读取到文件末尾。
mode
传输模式只能为 (文本模式) FTP_ASCII 或 (二进制模式) FTP_BINARY 其中的一个。
startpos
远程文件上传的开始位置。


返回值

成功时返回 true, 或者在失败时返回 false


范例

Example #1 ftp_fput() 例子

<?php// open some file for reading$file = 'somefile.txt';$fp = fopen($file, 'r');// set up basic connection$conn_id = ftp_connect($ftp_server);// login with username and password$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);// try to upload $fileif (ftp_fput($conn_id, $file, $fp, FTP_ASCII)) {    echo "Successfully uploaded $file\n";} else {    echo "There was a problem while uploading $file\n";}// close the connection and the file handlerftp_close($conn_id);fclose($fp);?>

更新日志

版本 说明
4.3.0 添加了 startpos 的支持。


参见

  • ftp_put() - 上传文件到 FTP 服务器
  • ftp_nb_fput() - 将文件存储到 FTP 服务器 (非阻塞)
  • ftp_nb_put() - 存储一个文件至 FTP 服务器(non-blocking)