SolrQuery::setHighlightUsePhraseHighlighter

(PECL solr >= 0.9.2) Whether to highlight phrase terms only when they appear within the query phrase public SolrQuery SolrQuery::setHighlightUsePhraseHighlighter ( bool $flag ) Sets whether or not to use SpanScorer to highlight phrase terms only when they appear within the query phrase in the document Parameters: value Whether or not to use SpanScorer to highlight phra

MongoResultException::getDocument

(PECL mongo >=1.3.0) Retrieve the full result document public array MongoResultException::getDocument ( void ) Retrieves the full error result document. Returns: The full result document as an array, including partial data if available and additional keys. Examples: MongoResultException::getDocument() example <?php

Assignment Operators

Examples: The basic assignment operator is "=". Your first inclination might be to think of this as "equal to". Don't. It really means that the left operand gets set to the value of the expression on the right (that is, "gets set to"). The value of an assignment expression is the value assigned. That is, the value of "$a = 3" is 3. This allows you to do some tricky things: <?php $a = ($b = 4) + 5; // $a is equal to 9 now, and $b has been set to 4. ?>

dba_close

(PHP 4, PHP 5, PHP 7) Close a DBA database void dba_close ( resource $handle ) dba_close() closes the established database and frees all resources of the specified database handle. Parameters: handle The database handler, returned by dba_open() or dba_popen(). Returns: No value is returned.

fann_set_cascade_output_stagnation_epochs

(PECL fann >= 1.0.0) Sets the number of cascade output stagnation epochs bool fann_set_cascade_output_stagnation_epochs ( resource $ann, int $cascade_output_stagnation_epochs ) Sets the number of cascade output stagnation epochs. Parameters: ann Neural network resource. cascade_output_stagnation_epochs The number of cascade output stag

pg_dbname

(PHP 4, PHP 5, PHP 7) Get the database name string pg_dbname ([ resource $connection ] ) pg_dbname() returns the name of the database that the given PostgreSQL connection resource. Parameters: connection PostgreSQL database connection resource. When connection is not present, the default connection is used. The default connection is the last connection made by pg_connect(

mb_ereg_search_regs

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Returns the matched part of a multibyte regular expression array mb_ereg_search_regs ([ string $pattern [, string $option = "ms" ]] ) Returns the matched part of a multibyte regular expression. Parameters: pattern The search pattern. option The search option. Returns: mb_ereg_

HaruPage::getFillingColorSpace

(PECL haru >= 0.0.1) Get the current filling color space int HaruPage::getFillingColorSpace ( void ) Get the current filling color space. Returns: Returns the current filling color space. The result value is one of the following: HaruDoc::CS_DEVICE_GRAY HaruDoc::CS_DEVICE_RGB HaruDoc::CS_DEVICE_CMYK HaruDoc::CS_CAL_GRAY HaruDoc::CS_CAL_RGB HaruDoc::CS_LAB HaruDoc::CS_ICC_BASED H

IntlChar::charAge

(PHP 7) Get the "age" of the code point public static array IntlChar::charAge ( mixed $codepoint ) Gets the "age" of the code point. The "age" is the Unicode version when the code point was first designated (as a non-character or for Private Use) or assigned a character. This can be useful to avoid emitting code points to receiving processes that do not accept newer characters. Parameters:

imagecreatetruecolor

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Create a new true color image resource imagecreatetruecolor ( int $width, int $height ) imagecreatetruecolor() returns an image identifier representing a black image of the specified size. Depending on your PHP and GD versions this function is defined or not. With PHP 4.0.6 through 4.1.x this function always exists if the GD module is loaded, but calling it without GD2 being installed PHP