wpdb::show_errors( bool $show = true ): bool

Enables showing of database errors.


Description

This function should be used only to enable showing of errors.
wpdb::hide_errors() should be used instead for hiding errors.

Top ↑

See also


Top ↑

Parameters

$show bool Optional
Whether to show errors.

Default: true


Top ↑

Return

bool Whether showing of errors was previously active.


Top ↑

Source

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

public function show_errors( $show = true ) {
	$errors            = $this->show_errors;
	$this->show_errors = $show;
	return $errors;
}


Top ↑

Changelog

Changelog
Version Description
0.71 Introduced.

Top ↑

User Contributed Notes

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