Establish, authenticate, and terminate an FTP connection.
| <?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); // then do something… // close connection ftp_close($ftp_conn); ?> |
The ftp_close() function terminates an FTP connection.
| ftp_close(ftp_conn); |
|
Parameter |
Description |
|
ftp_conn |
Mandatory. Specifies the FTP connection to close. |
|
Return Value: |
Returns |
|
PHP Version: |
4.2+ |