SDO_DAS_Relational::__construct

(^) Creates an instance of a Relational Data Access Service SDO_DAS_Relational::__construct ( array $database_metadata [, string $application_root_type [, array $SDO_containment_references_metadata ]] ) Constructs an instance of a Relational Data Access Service from the passed metadata. Parameters: database_metadata An array containing one or more table definitions,

mb_stripos

(PHP 5 >= 5.2.0, PHP 7) Finds position of first occurrence of a string within another, case insensitive int mb_stripos ( string $haystack, string $needle [, int $offset = 0 [, string $encoding = mb_internal_encoding() ]] ) mb_stripos() returns the numeric position of the first occurrence of needle in the haystack string. Unlike mb_strpos(), mb_stripos() is case-insensitive. If needle is not found, it returns FALSE.

SWFMovie::setDimension

(PHP 5 <= 5.3.0, PECL ming SVN) Sets the movie's width and height void SWFMovie::setDimension ( float $width, float $height ) Sets the movie's dimension to the specified width and height. Parameters: width The movie width. height The movie height. Returns: No value is returned.

radius_put_vendor_string

(PECL radius >= 1.1.0) Attaches a vendor specific string attribute bool radius_put_vendor_string ( resource $radius_handle, int $vendor, int $type, string $value [, int $options = 0 [, int $tag ]] ) Attaches a vendor specific string attribute to the current RADIUS request. In general, radius_put_vendor_attr() is a more useful function for attaching string attributes, as it is binary safe. Note: A request must be creat

MongoPool::setSize

(PECL mongo >= 1.2.3) Set the size for future connection pools. public static bool MongoPool::setSize ( int $size ) Sets the max number of connections new pools will be able to create. Parameters: size The max number of connections future pools will be able to create. Negative numbers mean that the pool will spawn an infinite number of connections.

lzf_decompress

(PECL lzf >= 0.1.0) LZF decompression string lzf_decompress ( string $data ) lzf_compress() decompresses the given data string containing lzf encoded data. Parameters: data The compressed string. Returns: Returns the decompressed data or FALSE if an error occurred. See also:

OAuthProvider::tokenHandler

(PECL OAuth >= 1.0.0) Set the tokenHandler handler callback public void OAuthProvider::tokenHandler ( callable $callback_function ) Sets the token handler callback, which will later be called with OAuthProvider::callTokenHandler(). Parameters: callback_function The callable functions name. Returns: No value is returned.

DOMComment::__construct

(PHP 5, PHP 7) Creates a new DOMComment object public DOMComment::__construct ([ string $value ] ) Creates a new DOMComment object. This object is read only. It may be appended to a document, but additional nodes may not be appended to this node until the node is associated with a document. To create a writeable node, use DOMDocument::createComment. Parameters: value Th

SQLite3::createCollation

(PHP 5 >= 5.3.11, PHP 7) Registers a PHP function for use as an SQL collating function public bool SQLite3::createCollation ( string $name, callable $callback ) Registers a PHP function or user-defined function for use as a collating function within SQL statements. Parameters: name Name of the SQL collating function to be created or redefined cal

mysqli_param_count

(PHP 5 < 5.4.0) Alias for mysqli_stmt_param_count() This function is an alias of mysqli_stmt_param_count(). This function has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0. See also: mysqli_stmt_param_count() -