GC_Error::get_error_code()
最后更新于:2021-11-27 14:43:22
GC_Error::get_error_code()Retrieves the first error code available.
响应
(string|int) Empty string, if no error codes.
源文件
文件: gc-includes/class-gc-error.php
public function get_error_code() {
$codes = $this->get_error_codes();
if ( empty( $codes ) ) {
return '';
}
return $codes[0];
}