Imagick::setImageBiasQuantum

(No version information available, might only be in Git) Description public void Imagick::setImageBiasQuantum ( string $bias ) Parameters: bias Returns: This function is currently not documented; only its argument list is available.

Yar_Server::__construct

(PECL yar >= 1.0.0) Register a server final public Yar_Server::__construct ( Object $obj ) Set up a Yar HTTP RPC Server, All the public methods of $obj will be register as a RPC service. Parameters: obj An Object, all public methods of its will be registered as RPC services. Returns: An instance of Yar_Server.

fbsql_read_clob

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Read a CLOB from the database string fbsql_read_clob ( string $clob_handle [, resource $link_identifier ] ) Reads CLOB data from the database. If a select statement contains BLOB and/or CLOB columns FrontBase will return the data directly when data is fetched. This default behavior can be changed with fbsql_set_lob_mode() so the fetch functions will return handles to BLOB and CLOB data. If

rrd_fetch

(PECL rrd >= 0.9.0) Fetch the data for graph as array. array rrd_fetch ( string $filename, array $options ) Gets data for graph output from RRD database file as array. This function has same result as rrd_graph(), but fetched data are returned as array, no image file is created. Parameters: filename RRD database file name. options Ar

mb_convert_variables

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Convert character code in variable(s) string mb_convert_variables ( string $to_encoding, mixed $from_encoding, mixed &$vars [, mixed &$... ] ) Converts character encoding of variables vars in encoding from_encoding to encoding to_encoding. mb_convert_variables() join strings in Array or Object to detect encoding, since encoding detection tends to fail for short strings. Therefore,

Phar::getStub

(PHP >= 5.3.0, PECL phar >= 1.0.0) Return the PHP loader or bootstrap stub of a Phar archive public string Phar::getStub ( void ) Phar archives contain a bootstrap loader, or stub written in PHP that is executed when the archive is executed in PHP either via include: <?php include 'myphar.phar'; ?> php myphar.phar Returns: Returns a string containing the contents of the bo

grapheme_stristr

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Returns part of haystack string from the first occurrence of case-insensitive needle to the end of haystack. string grapheme_stristr ( string $haystack, string $needle [, bool $before_needle = false ] ) Procedural style Returns part of haystack string starting from and including the first occurrence of case-insensitive needle to the end of haystack. Paramete

SplPriorityQueue::top

(PHP 5 >= 5.3.0, PHP 7) Peeks at the node from the top of the queue public mixed SplPriorityQueue::top ( void ) Returns: The value or priority (or both) of the top node, depending on the extract flag.

SAMConnection::isConnected

(PECL sam >= 0.1.0) Queries whether a connection is established to a Messaging Server bool SAMConnection::isConnected ( void ) Calling the "isConnected" method on a Connection object will check whether the PHP script is connected to a messaging server. No messages can be sent or received unless a connection has been established with a Messaging server. Returns: This method returns TRUE if the

str_ireplace

(PHP 5, PHP 7) Case-insensitive version of str_replace(). mixed str_ireplace ( mixed $search, mixed $replace, mixed $subject [, int &$count ] ) This function returns a string or an array with all occurrences of search in subject (ignoring case) replaced with the given replace value. If you don't need fancy replacing rules, you should generally use this function instead of preg_replace() with the i modifier.