SolrQuery::setFacetMissing

(PECL solr >= 0.9.2) Maps to facet.missing public SolrQuery SolrQuery::setFacetMissing ( bool $flag [, string $field_override ] ) Used to indicate that in addition to the Term-based constraints of a facet field, a count of all matching results which have no value for the field should be computed Parameters: flag TRUE turns this feature on. FALSE disables it.

Gmagick::blurimage

(PECL gmagick >= Unknown) Adds blur filter to image public Gmagick Gmagick::blurimage ( float $radius, float $sigma [, int $channel ] ) Adds blur filter to image. Parameters: radius Blur radius sigma Standard deviation Returns: The blurred Gmagick object Exception: Throws an

yaz_scan

(PHP 4 >= 4.0.5, PECL yaz >= 0.9.0) Prepares for a scan void yaz_scan ( resource $id, string $type, string $startterm [, array $flags ] ) This function prepares for a Z39.50 Scan Request on the specified connection. To actually transfer the Scan Request to the server and receive the Scan Response, yaz_wait() must be called. Upon completion of yaz_wait() call yaz_error() and yaz_scan_result() to handle the response.

streamWrapper::dir_rewinddir

(PHP 4 >= 4.3.2, PHP 5, PHP 7) Rewind directory handle public bool streamWrapper::dir_rewinddir ( void ) This method is called in response to rewinddir(). Should reset the output generated by streamWrapper::dir_readdir(). i.e.: The next call to streamWrapper::dir_readdir() should return the first entry in the location returned by streamWrapper::dir_opendir(). Returns: Returns TRUE on success

forward_static_call

(PHP 5 >= 5.3.0, PHP 7) Call a static method mixed forward_static_call ( callable $function [, mixed $parameter [, mixed $... ]] ) Calls a user defined function or method given by the function parameter, with the following arguments. This function must be called within a method context, it can't be used outside a class. It uses the late static binding. Parameters: function

LimitIterator::getPosition

(PHP 5 >= 5.1.0, PHP 7) Return the current position public int LimitIterator::getPosition ( void ) Gets the current zero-based position of the inner Iterator. Returns: The current position. Examples: LimitIterator::getPosition() example <?php $fruits = array(     'a' => 'apple',     'b' => 'banana',     'c' =&

Imagick::transparentPaintImage

(No version information available, might only be in Git) Paints pixels transparent bool Imagick::transparentPaintImage ( mixed $target, float $alpha, float $fuzz, bool $invert ) Paints pixels matching the target color transparent. This method is available if Imagick has been compiled against ImageMagick version 6.3.8 or newer. Parameters: target The target color to paint

ImagickDraw::composite

(PECL imagick 2.0.0) Composites an image onto the current image bool ImagickDraw::composite ( int $compose, float $x, float $y, float $width, float $height, Imagick $compositeWand ) Composites an image onto the current image, using the specified composition operator, specified position, and at the specified size. Parameters: compose composition operator. One of COMPOSITE_

Lapack::solveLinearEquation

(PECL lapack >= 0.1.0) Solve a system of linear equations public static array Lapack::solveLinearEquation ( array $a, array $b ) This function computes the solution to the system of linear equations with a square matrix A and multiple right-hand sides B. Solves A * X = B for multiple B. Parameters: a Square matrix of linear equations b

ini_restore

(PHP 4, PHP 5, PHP 7) Restores the value of a configuration option void ini_restore ( string $varname ) Restores a given configuration option to its original value. Parameters: varname The configuration option name. Returns: No value is returned. Examples: ini_restore() example