PHP.nl

gnupg_seterrormode

gnupg_seterrormode

Sets the mode for error_reporting

void **gnupg_seterrormode** resource $identifier int $errormode

Sets the mode for . error_reporting

identifier``errormodeThe error mode.

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

return.void

Voorbeeld: Procedural example

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

Voorbeeld: OO example

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