CakeFest 2024: The Official CakePHP Conference

gnupg_geterror

(PECL gnupg >= 0.1)

gnupg_geterrorReturns the errortext, if a function fails

Descrição

gnupg_geterror(resource $identifier): string|false

Parâmetros

identifier

O identificador gnupg, obtido de uma chamada a gnupg_init() ou gnupg.

Valor Retornado

Returns an errortext, if an error has occurred, otherwise false.

Exemplos

Exemplo #1 Procedural gnupg_geterror() example

<?php
$res
= gnupg_init();
echo
gnupg_geterror($res);
?>

Exemplo #2 OO gnupg_geterror() example

<?php
$gpg
= new gnupg();
echo
$gpg->geterror();
?>

add a note

User Contributed Notes

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