PHP ftp_close() Function
Example
Connect, login, and close 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);
?>
Definition and Usage
The ftp_close() function closes an FTP connection.
Syntax
ftp_close(ftp_conn);
Parameter Values
Parameter | Description |
---|---|
ftp_conn | Required. Specifies the FTP connection to close |
Technical Details
Return Value: | TRUE on success, FALSE on failure |
---|---|
PHP Version: | 4.2+ |
❮ PHP FTP Reference