wpdb::show_errors() public WP 0.71
Enables showing of database errors.
This function should be used only to enable showing of errors. wpdb::hide_errors() should be used instead for hiding errors.
{} It's a method of the class: wpdb{}
No Hooks.
Return
true/false. Whether showing of errors was previously active.
Usage
global $wpdb; $wpdb->show_errors( $show );
- $show(true/false)
- Whether to show errors.
Default: true
Notes
- See: wpdb::hide_errors()
Changelog
Since 0.71 | Introduced. |
Code of wpdb::show_errors() wpdb::show errors WP 5.6
public function show_errors( $show = true ) {
$errors = $this->show_errors;
$this->show_errors = $show;
return $errors;
}