PHP 8.4.22 Released!

pg_put_copy_end

(PHP 8 >= 8.4.0)

pg_put_copy_endSignal the completion of a COPY operation to the server

Descrição

function pg_put_copy_end(PgSql\Connection $connection, ?string $error = null): int

Sends an end-of-data indication to the server during a COPY FROM STDIN operation.

Parâmetros

connection
Uma instância de PgSql\Connection.
error
If not null, the COPY operation is forced to fail with the given error message.

Valor Retornado

Returns 1 on success, 0 if the data could not be queued (only in non-blocking mode), or -1 on error.

Veja Também

adicionar nota

Notas de Usuários

Não há notas de usuários para esta página.
To Top