GC_Error::has_errors()
最后更新于:2021-11-27 14:44:31
GC_Error::has_errors()
Verifies if the instance contains errors.
响应
(bool) If the instance contains errors.
源文件
文件: gc-includes/class-gc-error.php
public function has_errors() {
if ( ! empty( $this->errors ) ) {
return true;
}
return false;
}