CakeFest 2024: The Official CakePHP Conference

gnupg_seterrormode

(PECL gnupg >= 0.6)

gnupg_seterrormodeSets the mode for error_reporting

说明

gnupg_seterrormode(resource $identifier, int $errormode): void

Sets the mode for error_reporting.

参数

identifier

gnupg 标识符,由对 gnupg_init()gnupg 的调用生成。

errormode

The error mode.

errormode takes a constant indicating what type of error_reporting should be used. The possible values are GNUPG_ERROR_WARNING, GNUPG_ERROR_EXCEPTION and GNUPG_ERROR_SILENT. By default GNUPG_ERROR_SILENT is used.

返回值

没有返回值。

示例

示例 #1 Procedural gnupg_seterrormode() example

<?php
$res
= gnupg_init();
gnupg_seterrormode($res,GNUPG_ERROR_WARNING); // raise a PHP-Warning in case of an error
?>

示例 #2 OO gnupg_seterrormode() example

<?php
$gpg
= new gnupg();
$gpg->seterrormode(gnupg::ERROR_EXCEPTION); // throw an exception in case of an error
?>

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top