Latest web development tutorials

PHP ftp_fput () function

PHP FTP Reference Complete PHP FTP Reference

Definition and Usage

ftp_fput () function to upload a local file has been opened, and on the FTP server to save it as a file.

If successful, the function returns TRUE. If it fails, it returns FALSE.

grammar

ftp_fput(ftp_connection,remote,local,mode,resume)

参数 描述
ftp_connection 必需。规定要使用的 FTP 连接。
remote 必需。规定上传到 FTP 服务器上保存的文件。
local 必需。规定要上传的打开文件。
mode 必需。规定传输模式。可能的值:
  • FTP_ASCII
  • FTP_BINARY
resume 可选。规定在本地文件中的何处开始复制。默认是 0。


Examples

This example is copied from the "source.txt" text to "target.txt" in:

<?php
$source = fopen("source.txt","r");

$conn = ftp_connect("ftp.testftp.com") or die("Could not connect");
ftp_login($conn,"admin","ert456");

echo ftp_fput($conn,"target.txt",$source,FTP_ASCII);

ftp_close($conn);
?>

The code above will output:

1


PHP FTP Reference Complete PHP FTP Reference