SNMP::getError

(PHP 5 >= 5.4.0, PHP 7) Get last error message public string SNMP::getError ( void ) Returns string with error from last SNMP request. Returns: String describing error from last SNMP request. Examples: SNMP::getError() example <?php $session = new SNMP(SNMP::VERSION_2c, '127.0.0.1', 'boguscommunity'); var_dump(@$ses

Imagick::setImageMatte

(PECL imagick 2.0.0) Sets the image matte channel bool Imagick::setImageMatte ( bool $matte ) Sets the image matte channel. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer. Parameters: matte True activates the matte channel and false disables it. Returns: Returns TRUE on success.

RecursiveTreeIterator::beginChildren

(PHP 5 >= 5.3.0, PHP 7) Begin children public void RecursiveTreeIterator::beginChildren ( void ) Called when recursing one level down. Returns: No value is returned. This function is currently not documented; only its argument list is available.

ZipArchive::open

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) Open a ZIP file archive mixed ZipArchive::open ( string $filename [, int $flags ] ) Opens a new zip archive for reading, writing or modifying. Parameters: filename The file name of the ZIP archive to open. flags The mode to use to open the archive. ZipArchive::OVERWRITE ZipArchive:

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.

sybase_fetch_assoc

(PHP 4 >= 4.3.0, PHP 5, PHP 7) Fetch a result row as an associative array array sybase_fetch_assoc ( resource $result ) sybase_fetch_assoc() is a version of sybase_fetch_row() that uses column names instead of integers for indices in the result array. Columns from different tables with the same names are returned as name, name1, name2, ..., nameN. An important thing to note is that using sybase_fetch_assoc() is NOT sign

imap_append

(PHP 4, PHP 5, PHP 7) Append a string message to a specified mailbox bool imap_append ( resource $imap_stream, string $mailbox, string $message [, string $options = NULL [, string $internal_date = NULL ]] ) Appends a string message to the specified mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). mailbox The mail

FilterIterator::key

(PHP 5 >= 5.1.0, PHP 7) Get the current key public mixed FilterIterator::key ( void ) Get the current key. Returns: The current key. This function is currently not documented; only its argument list is available. See also: FilterIterator::next() -

Phar::setMetadata

(PHP >= 5.3.0, PECL phar >= 1.0.0) Sets phar archive meta-data public void Phar::setMetadata ( mixed $metadata ) Note: This method requires the php.ini setting phar.readonly to be set to 0 in order to work for Phar objects. Otherwise, a PharException will be thrown. Phar::setMetadata() should be used to store customized data that describes something about the phar archive as a complete entity. PharFileInfo::setMeta

libxml_get_errors

(PHP 5 >= 5.1.0, PHP 7) Retrieve array of errors array libxml_get_errors ( void ) Retrieve array of errors. Returns: Returns an array with LibXMLError objects if there are any errors in the buffer, or an empty array otherwise. Examples: A libxml_get_errors() example This example demonstrates how to build a simple libx