MongoCollection::parallelCollectionScan

(PECL mongo >=1.5.0) Returns an array of cursors to iterator over a full collection in parallel public array[MongoCommandCursor] MongoCollection::parallelCollectionScan ( int $num_cursors ) This method returns an array of a maximum of num_cursors cursors. An iteration over one of the returned cursors results in a partial set of documents for a collection. Iteration over all the returned cursors results in getting every d

VarnishAdmin::ban

(PECL varnish >= 0.3) Ban URLs using a VCL expression public int VarnishAdmin::ban ( string $vcl_regex ) Parameters: vcl_regex Varnish VCL expression. It's based on the varnish ban command. Returns: Returns the varnish command status.

db2_fetch_assoc

(PECL ibm_db2 >= 1.0.0) Returns an array, indexed by column name, representing a row in a result set array db2_fetch_assoc ( resource $stmt [, int $row_number = -1 ] ) Returns an array, indexed by column name, representing a row in a result set. Parameters: stmt A valid stmt resource containing a result set. row_number Requests a

openssl_pkcs12_export_to_file

(PHP 5 >= 5.2.2, PHP 7) Exports a PKCS#12 Compatible Certificate Store File bool openssl_pkcs12_export_to_file ( mixed $x509, string $filename, mixed $priv_key, string $pass [, array $args ] ) openssl_pkcs12_export_to_file() stores x509 into a file named by filename in a PKCS#12 file format. Parameters: x509 See Key/Certificate parameters for a list of valid values.

SolrDisMaxQuery::__construct

(No version information available, might only be in Git) Class Constructor public SolrDisMaxQuery::__construct ([ string $q ] ) Class constructor initializes the object and sets the q parameter if passed Parameters: q Search Query (q parameter) Returns: Exception: Emits SolrIllegalArgumentException in case of an in

sqlite_key

(PHP 5 >= 5.1.0 and < 5.4.0) Returns the current row index int SQLiteResult::key ( void ) Object oriented style (method): SQLiteResult::key() returns the current row index of the buffered result set result. Unlike all other SQLite functions, this function does not have a procedural version, and can only be called as a method on a SQLiteResult object. Returns: Returns the current row index

SyncSemaphore::lock

(PECL sync >= 1.0.0) Decreases the count of the semaphore or waits public bool SyncSemaphore::lock ([ integer $wait ] ) Decreases the count of a SyncSemaphore object or waits until the semaphore becomes non-zero. Parameters: wait The number of milliseconds to wait for the semaphore. A value of -1 is infinite. Returns: A boolean of TRUE if the

mysqli_client_encoding

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

hash_algos

(PHP 5 >= 5.1.2, PHP 7, PECL hash >= 1.1) Return a list of registered hashing algorithms array hash_algos ( void ) Returns: Returns a numerically indexed array containing the list of supported hashing algorithms. Changelog: 5.6.0 Support for gost-crypto was added. This implements the GOST hash function using the CryptoPro S-box tables as

socket_set_nonblock

(PHP 4 >= 4.1.0, PHP 5, PHP 7) Sets nonblocking mode for file descriptor fd bool socket_set_nonblock ( resource $socket ) The socket_set_nonblock() function sets the O_NONBLOCK flag on the socket specified by the socket parameter. When an operation (e.g. receive, send, connect, accept, ...) is performed on a non-blocking socket, the script will not pause its execution until it receives a signal or it can perform the op