PHP 8.4.22 Released!

pg_put_copy_data

(PHP 8 >= 8.4.0)

pg_put_copy_dataSend data to the server during a COPY operation

说明

function pg_put_copy_data(PgSql\Connection $connection, string $cmd): int

Sends data to the server during a COPY FROM STDIN operation. A COPY command must have been issued via pg_query() before calling this function.

参数

connection
PgSql\Connection 实例。
cmd
The data to send to the server. A final newline is automatically added if not present. The data must be formatted according to the COPY command's format.

返回值

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

参见

添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top