MongoDB::setWriteConcern

(PECL mongo >=1.5.0) Set the write concern for this database public bool MongoDB::setWriteConcern ( mixed $w [, int $wtimeout ] ) Parameters: w The write concern. This may be an integer denoting the number of servers required to acknowledge the write, or a string mode (e.g. "majority"). wtimeout The maximum number of milliseconds to wait

Memcache::getStats

(PECL memcache >= 0.2.0) Get statistics of the server array Memcache::getStats ([ string $type [, int $slabid [, int $limit = 100 ]]] ) Memcache::getStats() returns an associative array with server's statistics. Array keys correspond to stats parameters and values to parameter's values. Also you can use memcache_get_stats() function. Parameters: type The type of stati

pg_connection_status

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Get connection status int pg_connection_status ( resource $connection ) pg_connection_status() returns the status of the specified connection. Parameters: connection PostgreSQL database connection resource. Returns: PGSQL_CONNECTION_OK or PGSQL_CONNECTION_BAD. E

iis_get_server_by_comment

(PECL iisfunc SVN) Return the instance number associated with the Comment int iis_get_server_by_comment ( string $comment ) This function is currently not documented; only its argument list is available.

ncurses_insch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Insert character moving rest of line including character at current position int ncurses_insch ( int $character ) Parameters: character This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in

Collator::compare

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Compare two Unicode strings public int Collator::compare ( string $str1, string $str2 ) Object oriented style Procedural style int collator_compare ( Collator $coll , string $str1 , string $str2 ) Compare two Unicode strings according to collation rules. Parameters: coll Collator object. str1

fann_get_cascade_activation_functions

(PECL fann >= 1.0.0) Returns the cascade activation functions array fann_get_cascade_activation_functions ( resource $ann ) The cascade activation functions array is an array of the different activation functions used by the candidates See fann_get_cascade_num_candidates() for a description of which candidate neurons will be generated by this array. The default activation functions are FANN_SIGMOID, FANN_SIGMOID_SYMME

cairo_scaled_font_glyph_extents

(PECL cairo >= 0.1.0) Description array cairo_scaled_font_glyph_extents ( CairoScaledFont $scaledfont, array $glyphs ) The function description goes here. Parameters: scaledfont Description... glyphs Description... Returns: What is returned on success and failure This fun

eio_mkdir

(PECL eio >= 0.0.1dev) Create directory resource eio_mkdir ( string $path, int $mode [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_mkdir() creates directory with specified access mode. Parameters: path Path for the new directory. mode Access mode, e.g. 0755 pri

ReflectionClass::newInstance

(PHP 5, PHP 7) Creates a new class instance from given arguments. public object ReflectionClass::newInstance ( mixed $args [, mixed $... ] ) Creates a new instance of the class. The given arguments are passed to the class constructor. Parameters: args Accepts a variable number of arguments which are passed to the class constructor, much like call_user_func().