GnuPG 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

gnupg_getprotocol

(PECL gnupg >= 0.1)

gnupg_getprotocolReturns the currently active protocol for all operations

说明

int gnupg_getprotocol ( resource $identifier )

参数

identifier

The gnupg identifier, from a call to gnupg_init() or gnupg.

返回值

Returns the currently active protocol, which can be one of GNUPG_PROTOCOL_OpenPGP or GNUPG_PROTOCOL_CMS.

范例

Example #1 Procedural gnupg_getprotocol() example

<?php
$res 
gnupg_init();
echo 
gnupg_getprotocol($res);
?>

Example #2 OO gnupg_getprotocol() example

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


GnuPG 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程