wpdb::show_errors( bool $show = true )

Enables showing of database errors.


Description Description

This function should be used only to enable showing of errors. wpdb::hide_errors() should be used instead for hiding of errors. However, this function can be used to enable and disable showing of database errors.

See also See also


Top ↑

Parameters Parameters

$show

(bool) (Optional) Whether to show or hide errors

Default value: true


Top ↑

Return Return

(bool) Old value for showing errors.


Top ↑

Source Source

File: wp-includes/wp-db.php

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

Top ↑

Changelog Changelog

Changelog
Version Description
0.71 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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