Dutch PHP Conference 2025 - Call For Papers

ftp_close

(PHP 4 >= 4.2.0, PHP 5, PHP 7, PHP 8)

ftp_closeCloses an FTP connection

Опис

ftp_close(FTP\Connection $ftp): bool

ftp_close() closes the given link identifier and releases the resource.

Зауваження:

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

Параметри

ftp

Примірник FTP\Connection.

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Журнал змін

Версія Опис
8.1.0 Тепер параметр ftp має бути примірником FTP\Connection. Раніше очікувався resource.

Приклади

Приклад #1 ftp_close() 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);
?>

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top