|
gnupg_getengineinfoReturns the engine info Description
array gnupg_getengineinfo(resource
$identifier)Parameters
Return Values
Returns an array with engine info consting of Examples
Example #1 Procedural gnupg_getengineinfo example The above example will output:
array(3) {
["protocol"]=>
int(0)
["file_name"]=>
string(12) "/usr/bin/gpg"
["home_dir"]=>
string(0) ""
}
Example #2 OO gnupg_getengineinfo example The above example will output:
array(3) {
["protocol"]=>
int(0)
["file_name"]=>
string(13) "/usr/bin/gpg2"
["home_dir"]=>
string(15) "/var/www/.gnupg"
}
|