gcdb::insert()

最后更新于:2021-11-26 09:01:46

gcdb::insert( string$table, array$data, array|string$format=null)

Inserts a row into the table.

参数

$table

(string) (Required) Table name.

$data

(array) (Required) Data to insert (in column => value pairs). Both $data columns and $data values should be “raw” (neither should be SQL escaped). Sending a null value will cause the column to be set to NULL

  • the corresponding format is ignored in this case.

$format

(array|string) (Optional) An array of formats to be mapped to each of the value in $data. If string, that format will be used for all of the values in $data. A format is one of ‘%d’, ‘%f’, ‘%s’ (integer, float, string). If omitted, all values in $data will be treated as strings unless otherwise specified in gcdb::$field_types.

Default value: null

响应

(int|false) The number of rows inserted, or false on error.

源文件

文件: gc-includes/gc-db.php

	public function insert( $table, $data, $format = null ) {
		return $this->_insert_replace_helper( $table, $data, $format, 'INSERT' );
	}