PHP Doku:: Sets the mode for error_reporting - function.gnupg-seterrormode.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenGNU Privacy GuardGnuPG Funktionengnupg_seterrormode

Ein Service von Reinhard Neidl - Webprogrammierung.

GnuPG Funktionen

<<gnupg_setarmor

gnupg_setsignmode>>

gnupg_seterrormode

(PECL gnupg >= 0.6)

gnupg_seterrormodeSets the mode for error_reporting

Beschreibung

void gnupg_seterrormode ( resource $identifier , int $errormode )

Sets the mode for error_reporting.

Parameter-Liste

identifier

Eine von gnupg_init() oder der Klasse gnupg zurückgegebene GnuPG-Ressource.

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.

Rückgabewerte

Es wird kein Wert zurückgegeben.

Beispiele

Beispiel #1 Procedural gnupg_seterrormode() example

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

Beispiel #2 OO gnupg_seterrormode() example

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


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)