EventHttpConnection::setTimeout

(PECL event >= 1.2.6-beta) Sets the timeout for the connection public void EventHttpConnection::setTimeout ( int $timeout ) Sets the timeout for the connection Parameters: timeout Timeout in seconds. Returns: No value is returned.

SolrQuery::collapse

(No version information available, might only be in Git) Collapses the result set to a single document per group public SolrQuery SolrQuery::collapse ( SolrCollapseFunction $collapseFunction ) Collapses the result set to a single document per group before it forwards the result set to the rest of the search components. So all downstream components (faceting, highlighting, etc...) will work with the collapsed result set.

ReflectionProperty::__construct

(PHP 5, PHP 7) Construct a ReflectionProperty object public ReflectionProperty::__construct ( mixed $class, string $name ) Parameters: class The class name, that contains the property. name The name of the property being reflected. Returns: No value is returned. This function

yp_master

(PHP 4, PHP 5 <= 5.0.5) Returns the machine name of the master NIS server for a map string yp_master ( string $domain, string $map ) Returns the machine name of the master NIS server for a map. Parameters: domain The NIS domain name. map The NIS map. Returns: E

SplFileObject::__construct

(PHP 5 >= 5.1.0, PHP 7) Construct a new file object. public SplFileObject::__construct ( string $filename [, string $open_mode = "r" [, bool $use_include_path = false [, resource $context ]]] ) Construct a new file object. Parameters: filename The file to read. TipA URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details

htmlspecialchars_decode

(PHP 5 >= 5.1.0, PHP 7) Convert special HTML entities back to characters string htmlspecialchars_decode ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 ] ) This function is the opposite of htmlspecialchars(). It converts special HTML entities back to characters. The converted entities are: &amp;, &quot; (when ENT_NOQUOTES is not set), &#039; (when ENT_QUOTES is set), &lt; and &gt;.

Yaf_Controller_Abstract::getInvokeArg

(Yaf >=1.0.0) The getInvokeArg purpose public void Yaf_Controller_Abstract::getInvokeArg ( string $name ) Parameters: name Returns:

Yaf_Config_Ini::toArray

(Yaf >=1.0.0) Returns a PHP array public array Yaf_Config_Ini::toArray ( void ) Returns a PHP array from the Yaf_Config_Ini Returns:

SWFMovie::addFont

(PHP 5 <= 5.3.0, PECL ming SVN) mixed SWFMovie::addFont ( SWFFont $font ) Returns: No value is returned. This function is currently not documented; only its argument list is available.

maxdb_stmt_bind_param

(PECL maxdb >= 1.0) Binds variables to a prepared statement as parameters bool maxdb_stmt_bind_param ( resource $stmt, string $types, mixed &$var1 [, mixed &$... ] ) Procedural style Object oriented style bool maxdb_stmt::bind_param ( string $types , mixed &$var1 [, mixed &$... ] ) Procedural style (extended syntax): bool maxdb_stmt_bind_param ( resource $stmt , string $types , array &$var ) Object or