Forum und email

gnupg_clearsignkeys

(No version information available, might be only in CVS)

gnupg_clearsignkeys — Removes all keys which were set for signing before

설명

bool gnupg_clearsignkeys ( resource $identifier )

반환값

성공할 경우 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();
?>