PHP.nl

ftp_close

ftp_close

Closes an FTP connection

bool **ftp_close** FTP\Connection $ftp
closes the given link identifier

and releases the . ftp_close``resource

Opmerking: > After calling this function, you can no longer use the FTP connection and must create a new one with . ftp_connect

ftp

return.success

Voorbeeld: example

<?php

// set up basic connection
$ftp = ftp_connect($ftp_server);

// login with username and password
$login_result = ftp_login($ftp, $ftp_user_name, $ftp_user_pass);

// print the current directory
echo ftp_pwd($ftp);

// close this connection
ftp_close($ftp);
?>

ftp_connect