PHP ftp_put() Function

PHP FTP Reference : Upload local file to a file on the FTP server

Definition and Usage

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

Syntax

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

Parameter Values

Parameter Description
ftp_conn 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 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

Technical Details

Return Value:  TRUE on success, FALSE on failure
PHP Version: 4+
PHP Changelog: PHP 7.3 - The mode parameter was made optional.
PHP 4.3 - The startpos parameter was added.

❮ PHP FTP Reference