update : 2015.11.03
php.shukuma.com

검색:
 
 
Copy data from PHP array into table

PDO::pgsqlCopyFromArray

(PHP 5 >= 5.3.3)

PDO::pgsqlCopyFromArrayCopy data from PHP array into table

설명

public bool PDO::pgsqlCopyFromArray ( string $table_name , array $rows [, string $delimiter = '\t' [, string $null_as = "\\\\N" [, string $fields ]]] )

Copies data from rows array to table table_name using delimiter as fields delimiter and fields list

인수

table_name

String containing table name

rows

Array of strings with fields separated by delimiter

delimiter

Delimiter used in rows array

null_as

How to interpret null values

fields

List of fields to insert

반환값

Returns TRUE on success,실패 시 FALSE를 반환합니다.