QuickHashIntHash::get

(PECL quickhash >= Unknown) This method retrieves a value from the hash by its key public int QuickHashIntHash::get ( int $key ) This method retrieves a value from the hash by its key. Parameters: key The key of the entry to add. Returns: The value if the key exists, or NULL if the key wasn't part of the hash.

CairoMatrix::initIdentity

(PECL cairo >= 0.1.0) Creates a new identity matrix public static void CairoMatrix::initIdentity ( void ) Object oriented style (method): Procedural style: object cairo_matrix_init_identity ( void ) Creates a new matrix that is an identity transformation. An identity transformation means the source data is copied into the destination data without change Returns: Returns a new CairoMatrix obje

ReflectionClass::isAbstract

(PHP 5, PHP 7) Checks if class is abstract public bool ReflectionClass::isAbstract ( void ) Checks if the class is abstract. Returns: Returns TRUE on success or FALSE on failure. Examples: ReflectionClass::isAbstract() example <?php class          TestClass { } abstract class TestAbstractClass { } $testClass     = new

ldap_get_dn

(PHP 4, PHP 5, PHP 7) Get the DN of a result entry string ldap_get_dn ( resource $link_identifier, resource $result_entry_identifier ) Finds out the DN of an entry in the result. Parameters: link_identifier An LDAP link identifier, returned by ldap_connect(). result_entry_identifier An LDAP link identifier, returned by ldap_connect().

ZMQContext::getOpt

(PECL zmq >= 1.0.4) Get context option public mixed ZMQContext::getOpt ( string $key ) Returns the value of a context option. Parameters: key An integer representing the option. See the ZMQ::CTXOPT_* constants. Returns: Returns either a string or an integer depending on key. Throws ZMQContextException on error.

m_numrows

(PHP 4 >= 4.3.9, PHP 5 <= 5.0.5, PECL mcve >= 1.0.0) Number of rows returned in a comma delimited response int m_numrows ( resource $conn, int $identifier ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). identifier An MCVE_CONN resource returned by m_initengine(). Returns:

Imagick::posterizeImage

(PECL imagick 2.0.0) Reduces the image to a limited number of color level bool Imagick::posterizeImage ( int $levels, bool $dither ) Reduces the image to a limited number of color level. Parameters: levels Reduces the image to a limited number of color level. dither Reduces the image to a limited number of color level.

EventHttpRequest::__construct

(PECL event >= 1.4.0-beta) Constructs EventHttpRequest object public EventHttpRequest::__construct ( callable $callback [, mixed $data = NULL ] ) Constructs EventHttpRequest object. Parameters: callback Gets invoked on requesting path. Should match the following prototype: void callback ([ EventHttpRequest $req = NULL [, mixed $arg = NULL ]] )

bcompiler_write_class

(PECL bcompiler >= 0.4) Writes a defined class as bytecodes bool bcompiler_write_class ( resource $filehandle, string $className [, string $extends ] ) Reads the bytecodes from PHP for an existing class, and writes them to the open file handle. Parameters: filehandle A file handle as returned by fopen(). className The class name, as

TokyoTyrantTable::putCat

(PECL tokyo_tyrant >= 0.1.0) Concatenates to a row public void TokyoTyrantTable::putCat ( string $key, array $columns ) This method can be used to add new columns to existing records. Existing keys will be left unmodified but any new columns will be appended to the row. Passing null as key will generate a new row. Parameters: key The primary key of the row or NULL