ftp_append

(PHP 7 >= 7.2.0, PHP 8)

ftp_appendAppend the contents of a file to another file on the FTP server

Descrizione

ftp_append(
    FTP\Connection $ftp,
    string $remote_filename,
    string $local_filename,
    int $mode = FTP_BINARY
): bool

Avviso

Questa funzione, al momento non è documentata; è disponibile soltanto la lista degli argomenti.

Elenco dei parametri

ftp

An FTP\Connection instance.

remote_filename

local_filename

mode

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento.

Log delle modifiche

Versione Descrizione
8.1.0 The ftp parameter expects an FTP\Connection instance now; previously, a resource was expected.
add a note add a note

User Contributed Notes

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