wpdb::hide_errors(): bool

Disables showing of database errors.

Description

By default database errors are not shown.

See also

Return

bool Whether showing of errors was previously active.

Source

public function hide_errors() {
	$show              = $this->show_errors;
	$this->show_errors = false;
	return $show;
}

Changelog

VersionDescription
0.71Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.