Automator_DB_Handler::update( $table,  $update,  $where,  $where_format,  $update_format )


Parameters Parameters

$table

(Required)

$update

(Required)

$where

(Required)

$where_format

(Required)

$update_format

(Required)


Top ↑

Return Return

(bool|int)


Source Source

File: src/core/lib/utilities/db/class-automator-db-handler.php

	public function update( string $table, array $update, array $where, array $where_format, array $update_format ) {
		global $wpdb;

		return $wpdb->update(
			$table,
			$update,
			$where,
			$where_format,
			$update_format
		);
	}