Pdo\Pgsql::copyFromArray

(PHP 8 >= 8.4.0)

Pdo\Pgsql::copyFromArrayPHP の配列から、データをテーブルにコピーする

説明

public Pdo\Pgsql::copyFromArray(
    string $tableName,
    array $rows,
    string $separator = "\t",
    string $nullAs = "\\\\N",
    ?string $fields = null
): bool

rows 配列からデータをテーブル tableName にコピーします。その際、separator を フィールドのデリミタ、そして fields のリストを使います。

パラメータ

tableName
テーブル名を含む文字列
rows
separator で区切られたフィールドの文字列の配列
separator
rows 配列の各要素の中で フィールドを分割するためのデリミタ
nullAs
SQLの NULL 値をどのように扱うかを指定します
fields
挿入するフィールドの一覧

戻り値

成功した場合に true を、失敗した場合に false を返します。

参考

add a note

User Contributed Notes

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