(PECL gnupg >= 0.1)
gnupg_getprotocol — Gibt das aktuell für alle Operationen aktive Protokoll zurück
$identifier
)
identifier
Eine von gnupg_init() oder der Klasse gnupg zurückgegebene GnuPG-Ressource.
Gibt das aktuell aktive Protokoll zurück, welches eine der
GNUPG_PROTOCOL_OpenPGP
- oder GNUPG_PROTOCOL_CMS
-Konstanten sein kann.
Beispiel #1 Prozedurales gnupg_getprotocol() Beispiel
<?php
$res = gnupg_init();
echo gnupg_getprotocol($res);
?>
Beispiel #2 OO (objektorientiertes) gnupg_getprotocol() Beispiel
<?php
$gpg = new gnupg();
echo $gpg -> getprotocol();
?>