cyrus_query

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Send a query to a Cyrus IMAP server array cyrus_query ( resource $connection, string $query ) Sends a query to a Cyrus IMAP server. Parameters: connection The connection handle. query The query string. Returns: Returns an associative array with the following keys: text, msgno

cyrus_connect

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Connect to a Cyrus IMAP server resource cyrus_connect ([ string $host [, string $port [, int $flags ]]] ) Connects to a Cyrus IMAP server. Parameters: host The Cyrus IMAP host name. port The port number. flags The port number. Returns: Retu

cyrus_close

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Close connection to a Cyrus IMAP server bool cyrus_close ( resource $connection ) Closes the connection to a Cyrus IMAP server. Parameters: connection The connection handle. Returns: Returns TRUE on success or FALSE on failure.

cyrus_bind

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Bind callbacks to a Cyrus IMAP connection bool cyrus_bind ( resource $connection, array $callbacks ) Binds callbacks to a Cyrus IMAP connection. Parameters: connection The connection handle. callbacks An array of callbacks. Returns: Returns TRUE on success or FALSE on failure

cyrus_authenticate

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Authenticate against a Cyrus IMAP server void cyrus_authenticate ( resource $connection [, string $mechlist [, string $service [, string $user [, int $minssf [, int $maxssf [, string $authname [, string $password ]]]]]]] ) Returns: No value is returned. This function is currently not documented; only its argument list is avail

ImagickKernel::separate

(PECL imagick >= 3.3.0) Description public array ImagickKernel::separate ( void ) Separates a linked set of kernels and returns an array of ImagickKernels. Returns: Examples: ImagickKernel::separate() <?php          function renderKernelTable($matrix) {         $output = "<table class='infoTable'>";         f

ImagickKernel::scale

(PECL imagick >= 3.3.0) Description public void ImagickKernel::scale ( void ) ScaleKernelInfo() scales the given kernel list by the given amount, with or without normalization of the sum of the kernel values (as per given flags). The exact behaviour of this function depends on the normalization type being used please see http://www.imagemagick.org/api/morphology.php#ScaleKernelInfo for details. Flag should be one of Imag

ImagickKernel::getMatrix

(PECL imagick >= 3.3.0) Description public array ImagickKernel::getMatrix ( void ) Get the 2d matrix of values used in this kernel. The elements are either float for elements that are used or 'false' if the element should be skipped. Returns: A matrix (2d array) of the values that represent the kernel. Examples: ImagickKernel::getMa

ImagickKernel::fromMatrix

(PECL imagick >= 3.3.0) Description public static ImagickKernel ImagickKernel::fromMatrix ( array $matrix [, array $origin ] ) Create a kernel from an 2d matrix of values. Each value should either be a float (if the element should be used) or 'false' if the element should be skipped. For matrices that are odd sizes in both dimensions the the origin pixel will default to the centre of the kernel. For all other kernel sizes

ImagickKernel::fromBuiltIn

(PECL imagick >= 3.3.0) Description public static ImagickKernel ImagickKernel::fromBuiltin ( string $kernelType, string $kernelString ) Create a kernel from a builtin in kernel. See http://www.imagemagick.org/Usage/morphology/#kernel for examples. Currently the 'rotation' symbols are not supported. Example: $diamondKernel = ImagickKernel::fromBuiltIn(\Imagick::KERNEL_DIAMOND, "2"); Parameters: