MongoCursor::doQuery

(PECL mongo >=0.9.0 <1.6.0) Execute the query. protected void MongoCursor::doQuery ( void ) This function actually queries the database. All queries and commands go through this function. Thus, this function can be overridden to provide custom query handling. This handles serializing your query, sending it to the database, receiving a response, and deserializing it. Thus, if you are planning to override this, your c

SoapHeader::SoapHeader

(PHP 5 >= 5.0.1, PHP 7) SoapHeader constructor SoapHeader::SoapHeader ( string $namespace, string $name [, mixed $data [, bool $mustunderstand = false [, string $actor ]]] ) Constructs a new SoapHeader object. Parameters: namespace The namespace of the SOAP header element. name The name of the SoapHeader object.

SplObjectStorage::offsetSet

(PHP 5 >= 5.3.0, PHP 7) Associates data to an object in the storage public void SplObjectStorage::offsetSet ( object $object [, mixed $data = NULL ] ) Associate data to an object in the storage. Note: SplObjectStorage::offsetSet() is an alias of SplObjectStorage::attach(). Parameters: object The object to associate data with. data

RarArchive::getEntry

(PECL rar >= 2.0.0) Get entry object from the RAR archive public RarEntry RarArchive::getEntry ( string $entryname ) Object oriented style (method): Procedural style: RarEntry rar_entry_get ( RarArchive $rarfile , string $entryname ) Get entry object (file or directory) from the RAR archive. Note: You can also get entry objects using RarArchive::getEntries(). Note that a RAR archive can have multiple entries with the

imageconvolution

(PHP 5 >= 5.1.0, PHP 7) Apply a 3x3 convolution matrix, using coefficient and offset bool imageconvolution ( resource $image, array $matrix, float $div, float $offset ) Applies a convolution matrix on the image, using the given coefficient and offset. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor().

trader_cdlinvertedhammer

(PECL trader >= 0.2.0) Inverted Hammer array trader_cdlinvertedhammer ( array $open, array $high, array $low, array $close ) Parameters: open Opening price, array of real values. high High price, array of real values. low Low price, array of real values. close Clos

mysqli::debug

(PHP 5, PHP 7) Performs debugging operations bool mysqli::debug ( string $message ) Object oriented style Procedural style bool mysqli_debug ( string $message ) Performs debugging operations using the Fred Fish debugging library. Parameters: message A string representing the debugging operation to perform Returns: Returns TRUE.

Collator::getErrorCode

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get collator's last error code public int Collator::getErrorCode ( void ) Object oriented style Procedural style int collator_get_error_code ( Collator $coll ) Parameters: coll Collator object. Returns: Error code returned by the last Collator API function call.

MongoClient::getReadPreference

(PECL mongo >=1.3.0) Get the read preference for this connection public array MongoClient::getReadPreference ( void ) Returns: This function returns an array describing the read preference. The array contains the values type for the string read preference mode (corresponding to the MongoClient constants), and tagsets containing a list of all tag set criteria. If no tag sets were specified, tagsets

SyncSemaphore::unlock

(PECL sync >= 1.0.0) Increases the count of the semaphore public bool SyncSemaphore::unlock ([ integer &$prevcount ] ) Increases the count of a SyncSemaphore object. Parameters: prevcount Returns the previous count of the semaphore. Returns: A boolean of TRUE if the unlock operation was successful, FALSE otherwise.