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

    (PECL gnupg >= 0.5)

    Removes all keys which were set for decryption before

    说明

    gnupg_cleardecryptkeys(resource $identifier): bool

    参数

    $identifier

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

    返回值

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

    范例

    Example #1 Procedural gnupg_cleardecryptkeys() example

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

    Example #2 OO gnupg_cleardecryptkeys() example

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