• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • gnupg_clearsignkeys()

    (PECL gnupg >= 0.5)

    Removes all keys which were set for signing before

    说明

    gnupg_clearsignkeys(resource $identifier): bool

    参数

    $identifier

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

    返回值

    成功时返回TRUE,或者在失败时返回FALSE

    范例

    Example #1 Procedural gnupg_clearsignkeys() example

    <?php
    $res = gnupg_init();
    gnupg_clearsignkeys($res);
    ?>
    

    Example #2 OO gnupg_clearsignkeys() example

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