Statement on glibc/iconv Vulnerability

gnupg_geterror

(PECL gnupg >= 0.1)

gnupg_geterrorReturns the errortext, if a function fails

说明

gnupg_geterror(resource $identifier): string|false

参数

identifier

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

返回值

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

示例

示例 #1 Procedural gnupg_geterror() example

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

示例 #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