Event::getSupportedMethods

(PECL event >= 1.2.6-beta) Returns array with of the names of the methods supported in this version of Libevent public static array Event::getSupportedMethods ( void ) Returns array with of the names of the methods(backends) supported in this version of Libevent. Returns: Returns array. See also: EventConfig

Generator::valid

(PHP 5 >= 5.5.0, PHP 7) Check if the iterator has been closed public bool Generator::valid ( void ) Returns: Returns FALSE if the iterator has been closed. Otherwise returns TRUE.

SphinxClient::setRetries

(PECL sphinx >= 0.1.0) Set retry count and delay public bool SphinxClient::setRetries ( int $count [, int $delay = 0 ] ) Sets distributed retry count and delay. On temporary failures searchd will attempt up to count retries per agent. delay is the delay between the retries, in milliseconds. Retries are disabled by default. Note that this call will not make the API itself retry on temporary failure; it only tells search

Yaf_Route_Map::assemble

(Yaf >=2.3.0) Assemble a url public string Yaf_Route_Map::assemble ( array $info [, array $query ] ) Assemble a url. Parameters: info Assemble a url. query Assemble a url. Returns: Examples: Yaf_Route_Map::assemble() example <?php

ReflectionExtension::getINIEntries

(PHP 5, PHP 7) Gets extension ini entries public array ReflectionExtension::getINIEntries ( void ) Get the ini entries for an extension. Returns: An associative array with the ini entries as keys, with their defined values as values. Examples: ReflectionExtension::getINIEntries() example <?php $ext = new ReflectionExte

HaruPage::curveTo

(PECL haru >= 0.0.1) Append a Bezier curve to the current path bool HaruPage::curveTo ( float $x1, float $y1, float $x2, float $y2, float $x3, float $y3 ) Append a Bezier curve to the current path. The point (x1, y1) and the point (x2, y2) are used as the control points for a Bezier curve and current point is moved to the point (x3, y3). Parameters: x1 A Bezier curve c

RecursiveIteratorIterator::key

(PHP 5, PHP 7) Access the current key public mixed RecursiveIteratorIterator::key ( void ) Returns: The current key. This function is currently not documented; only its argument list is available.

SoapParam::__construct

(PHP 5 >= 5.0.1, PHP 7) SoapParam constructor SoapParam::__construct ( mixed $data, string $name ) This function is an alias of: SoapParam::SoapParam()

SolrClient::ping

(PECL solr >= 0.9.2) Checks if Solr server is still up public SolrPingResponse SolrClient::ping ( void ) Checks if the Solr server is still alive. Sends a HEAD request to the Apache Solr server. Returns: Returns a SolrPingResponse object on success and throws an exception on failure. Exception: Throws SolrClientException if the client had failed, or there was a

idate

(PHP 5, PHP 7) Format a local time/date as integer int idate ( string $format [, int $timestamp = time() ] ) Returns a number formatted according to the given format string using the given integer timestamp or the current local time if no timestamp is given. In other words, timestamp is optional and defaults to the value of time(). Unlike the function date(), idate() accepts just one char in the format parameter.