wpdb::suppress_errors( bool $suppress = true ): bool

Enables or disables suppressing of database errors.


Description

By default database errors are suppressed.

Top ↑

See also


Top ↑

Parameters

$suppress bool Optional
Whether to suppress errors.

Default: true


Top ↑

Return

bool Whether suppressing of errors was previously active.


Top ↑

Source

File: wp-includes/class-wpdb.php. View all references

public function suppress_errors( $suppress = true ) {
	$errors                = $this->suppress_errors;
	$this->suppress_errors = (bool) $suppress;
	return $errors;
}


Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

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