Returns the errortext, if a function fails

gnupg_geterror

(PECL gnupg >= 0.1)

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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *