SwishResult::stem

(PECL swish >= 0.1.0) Stems the given word array SwishResult::stem ( string $word ) Stems the word based on the fuzzy mode used during indexing. Each result object is linked with its index, so the results are based on this index. Parameters: word The word to stem. Returns: Returns array containing the stemmed word variants (usually just one).

sqlite_next

(PHP 5 < 5.4.0, PECL sqlite >= 1.0.0) Seek to the next row number bool sqlite_next ( resource $result ) Object oriented style (method): bool SQLiteResult::next ( void ) bool SQLiteUnbuffered::next ( void ) sqlite_next() advances the result handle result to the next row. Parameters: result The SQLite result resource. This parameter is not required when using the ob

pg_send_query_params

(PHP 5 >= 5.1.0, PHP 7) Submits a command and separate parameters to the server without waiting for the result(s). bool pg_send_query_params ( resource $connection, string $query, array $params ) Submits a command and separate parameters to the server without waiting for the result(s). This is equivalent to pg_send_query() except that query parameters can be specified separately from the query string. The function's par

XMLWriter::fullEndElement

(PHP 5 >= 5.2.0, PHP 7, PECL xmlwriter >= 2.0.4) End current element bool XMLWriter::fullEndElement ( void ) Object oriented style Procedural style bool xmlwriter_full_end_element ( resource $xmlwriter ) End the current xml element. Writes an end tag even if the element is empty. Parameters: xmlwriter Only for procedural calls. The XMLWriter resource that is being m

ftp_get_option

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Retrieves various runtime behaviours of the current FTP stream mixed ftp_get_option ( resource $ftp_stream, int $option ) This function returns the value for the requested option from the specified FTP connection. Parameters: ftp_stream The link identifier of the FTP connection. option Currently, the fo

DateTimeImmutable::modify

(PHP 5 >= 5.5.0, PHP 7) Creates a new object with modified timestamp public DateTimeImmutable DateTimeImmutable::modify ( string $modify ) Creates a new DateTimeImmutable object with modified timestamp. The original object is not modified. Parameters: object Procedural style only: A DateTime object returned by date_create(). The function modifies this object.

foreach

(PHP 4, PHP 5, PHP 7) Examples: The foreach construct provides an easy way to iterate over arrays. foreach works only on arrays and objects, and will issue an error when you try to use it on a variable with a different data type or an uninitialized variable. There are two syntaxes: foreach (array_expression as $value) statement foreach (array_expression as $key => $value) st

func_get_arg

(PHP 4, PHP 5, PHP 7) Return an item from the argument list mixed func_get_arg ( int $arg_num ) Gets the specified argument from a user-defined function's argument list. This function may be used in conjunction with func_get_args() and func_num_args() to allow user-defined functions to accept variable-length argument lists. Parameters: arg_num The argument offset. Funct

cairo_surface_get_content

(PECL cairo >= 0.1.0) Description int cairo_surface_get_content ( CairoSurface $surface ) The function description goes here. Parameters: surface Description... Returns: What is returned on success and failure This function is currently not documented; only its argument list is available.

APCIterator::next

(PECL apc >= 3.1.1) Move pointer to next item public void APCIterator::next ( void ) Moves the iterator pointer to the next element. Returns: Returns TRUE on success or FALSE on failure. See also: APCIterator::current() - APCIterator::rewind() - Iterator: