(PECL gnupg >= 0.1)
gnupg_setarmor — Toggle armored output
$identifier
, int $armor
) : boolToggle the armored output.
identifier
gnupg 锟斤拷识锟斤拷锟斤拷锟缴讹拷 gnupg_init() 锟斤拷 gnupg 锟侥碉拷锟斤拷锟斤拷锟缴★拷
armor
Pass a non-zero integer-value to this function to enable armored-output (default). Pass 0 to disable armored output.
锟缴癸拷时锟斤拷锟斤拷 TRUE
锟斤拷 锟斤拷锟斤拷锟斤拷失锟斤拷时锟斤拷锟斤拷 FALSE
锟斤拷
Example #1 Procedural gnupg_setarmor() example
<?php
$res = gnupg_init();
gnupg_setarmor($res,1); // enable armored output;
gnupg_setarmor($res,0); // disable armored output;
?>
Example #2 OO gnupg_setarmor() example
<?php
$gpg = new gnupg();
$gpg -> setarmor(1); // enable armored output;
$gpg -> setarmor(0); // disable armored output;
?>