Syntax:ftp_close ($ftp_connection);
Parameter:This function takes one required parameter
$ftp_connection . It specifies the FTP connection to close the FTP connection.
Return Value:Returns True on success or False on failure.
Notes : - This function is available for PHP 4.0.0 and above.
- The following examples cannot be run in the online IDE. So try running PHP on some hosting server or localhost with the correct ftp server name.
The following programs illustrate the ftp_close() function in PHP:
Example 1:
// Connect to the FTP server
$ftp_server
=
"localhost"
;
// Setting up ftp connection
$ftp_connection
= ftp_connect (
$ftp_server
)
or
die
(
"Could not connect to $ftp_server"
);
if
(
$ftp_connection
) {
echo
"Successfully connected to the ftp server!"
;
// Close the connection
if
(ftp_close (
$ftp_connection
)) {
echo
"
Connection closed Successfully! "
;
}
}
?>
Output:Successfully connected to the ftp server! Connection closed Successfully!
Example 2.Connecting to ftp server on port 21.
// Connect to the FTP server
$ftp_server
=
"localhost"
;
// Setting up ftp connection
$ftp_connection
= ftp_connect (
$ftp_server
, 21)
or
die
(
"Could not connect to $ftp_server"
);
if
(
$ftp_connection
) {
echo
"Successfully connected to the ftp server!"
;
// Close the connection
if
(ftp_close (
$ftp_connection
)) {
echo
"
Connection closed Successfully! "
;
}
}
?>
Output:Successfully connected to the ftp server! Connection closed Successfully!
Link: https://www.php.net/manual/en/function.ftp-close.php