CakeFest 2024: The Official CakePHP Conference

ftp_append

(PHP 7 >= 7.2.0, PHP 8)

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

Descripción

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

Advertencia

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

Parámetros

ftp

An FTP\Connection instance.

remote_filename

local_filename

mode

Valores devueltos

Devuelve true en caso de éxito o false en caso de error.

Historial de cambios

Versión Descripción
8.1.0 The ftp parameter expects an FTP\Connection instance now; previously, a recurso was expected.
add a note

User Contributed Notes

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