= 0.1)gnupg_geterror — Returns the errortext, if a function fails說(shuō)明gnupg_geterror(resource $identifier): string參數(shù)identifier">

gnupg_geterror

(PECL gnupg >= 0.1)

gnupg_geterrorReturns the errortext, if a function fails

說(shuō)明

gnupg_geterror(resource $identifier): string

參數(shù)

identifier

gnupg 標(biāo)識(shí)符,由對(duì) gnupg_init()gnupg 的調(diào)用生成。

返回值

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();
?>