pg_put_copy_end
PHP function
Edit on GitHub ✎
(PHP 8 >= 8.4.0)
Signal the completion of a COPY operation to the server
Description
pg_put_copy_end(PgSql\Connection $connection, string|null $error = null): int
Sends an end-of-data indication to the server during a COPY FROM STDIN operation.
Parameters
connectionConnection
errorIf not null, the
COPYoperation is forced to fail with the given error message.
Return Values
Returns 1 on success, 0 if the data could not be queued (only in non-blocking mode), or -1 on error.