THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

PHP ftp_put() Function

PHP FTP Reference PHP FTP Reference

Example

Upload local file to a file on the FTP server:

<?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);

$file = "localfile.txt";

// upload file
if (ftp_put($ftp_conn, "serverfile.txt", $file, FTP_ASCII))
  {
  echo "Successfully uploaded $file.";
  }
else
  {
  echo "Error uploading $file.";
  }

// close connection
ftp_close($ftp_conn);
?>

Definition and Usage

The ftp_put() function uploads a file to the FTP server.


Syntax

ftp_put(ftp_connection,remote_file,local_file,mode,startpos);

Parameter Description
ftp_connection Required. Specifies the FTP connection to use
remote_file Required. Specifies the file path to upload to
local_file Required. Specifies the path of the file to upload
mode Required. Specifies the transfer mode. Possible values: FTP_ASCII or FTP_BINARY
startpos Optional. Specifies the position in the remote file to start uploading to

Technical Details

Return Value: Returns TRUE on success or FALSE on failure
PHP Version: 4+
PHP Changelog: The startpos parameter was added in PHP 4.3.0

PHP FTP Reference PHP FTP Reference