HaruDoc::addPageLabel

(PECL haru >= 0.0.1) Set the numbering style for the specified range of pages bool HaruDoc::addPageLabel ( int $first_page, int $style, int $first_num [, string $prefix = "" ] ) Set the numbering style for the specified range of pages. Parameters: first_page The first page included into the labeling range. style The numbering style.

HaruDoc::addPage

(PECL haru >= 0.0.1) Add new page to the document object HaruDoc::addPage ( void ) Adds a new page to the document. Returns: Returns a new HaruPage instance. Exception: Throws a HaruException on error. See also: HaruDoc::insertPage() -

gnupg_verify

(PECL gnupg >= 0.1) Verifies a signed text array gnupg_verify ( resource $identifier, string $signed_text, string $signature [, string &$plaintext ] ) Verifies the given signed_text and returns information about the signature. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. signed_text The signed

gnupg_sign

(PECL gnupg >= 0.1) Signs a given text string gnupg_sign ( resource $identifier, string $plaintext ) Signs the given plaintext with the keys, which were set with gnupg_addsignkey before and returns the signed text or the signature, depending on what was set with gnupg_setsignmode. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg.

gnupg_setsignmode

(PECL gnupg >= 0.1) Sets the mode for signing bool gnupg_setsignmode ( resource $identifier, int $signmode ) Sets the mode for signing. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. sigmode The mode for signing. signmode takes a constant indicating what type of signature should be produced. The po

gnupg_seterrormode

(PECL gnupg >= 0.6) Sets the mode for error_reporting void gnupg_seterrormode ( resource $identifier, int $errormode ) Sets the mode for error_reporting. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. errormode The error mode. errormode takes a constant indicating what type of error_reporting shou

gnupg_setarmor

(PECL gnupg >= 0.1) Toggle armored output bool gnupg_setarmor ( resource $identifier, int $armor ) Toggle the armored output. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. armor Pass a non-zero integer-value to this function to enable armored-output (default). Pass 0 to disable armored output.

gnupg_keyinfo

(PECL gnupg >= 0.1) Returns an array with information about all keys that matches the given pattern array gnupg_keyinfo ( resource $identifier, string $pattern ) Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. pattern The pattern being checked against the keys. Returns: Returns

gnupg_init

(PECL gnupg >= 0.4) Initialize a connection resource gnupg_init ( void ) Returns: A GnuPG resource connection used by other GnuPG functions. Examples: Procedural gnupg_init() example <?php $res = gnupg_init(); ?> OO gnupg initializer example <?php $gpg = new gnupg(); ?>

gnupg_import

(PECL gnupg >= 0.3) Imports a key array gnupg_import ( resource $identifier, string $keydata ) Imports the key keydata and returns an array with information about the importprocess. Parameters: identifier The gnupg identifier, from a call to gnupg_init() or gnupg. keydata The data key that is being imported. Returns