Automator_DB_Handler::update( $table, $update, $where, $where_format, $update_format )
Contents
Parameters Parameters
- $table
-
(Required)
- $update
-
(Required)
- $where
-
(Required)
- $where_format
-
(Required)
- $update_format
-
(Required)
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 ); }
Expand full source code Collapse full source code View on Github