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

    (PECL gnupg >= 0.5)

    Removes all keys which were set for encryption before

    说明

    gnupg_clearencryptkeys(resource $identifier): bool

    参数

    $identifier

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

    返回值

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

    范例

    Example #1 Procedural gnupg_clearencryptkeys() example

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

    Example #2 OO gnupg_clearencryptkeys() example

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