gcdb::hide_errors()

最后更新于:2021-11-26 09:01:26

gcdb::hide_errors()

Disables showing of database errors.

响应

(bool) Whether showing of errors was previously active.

源文件

文件: gc-includes/gc-db.php

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