gnupg_geterror
(PECL gnupg >= 0.1)
gnupg_geterror — Returns the errortext, if a function fails
說明
gnupg_geterror(resource
$identifier): string參數
-
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();
?>