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

ifx_get_char

(PHP 4, PHP <=5.2.0) Return the content of the char object string ifx_get_char ( int $bid ) Returns the content of the char object. Parameters: bid The char object-id. Returns: Returns the contents as a string, or FALSE on errors. See also: ifx_get_blob() -

ReflectionParameter::getType

(PHP 7) Gets a parameter's type public ReflectionType ReflectionParameter::getType ( void ) Gets the associated type of a parameter. Returns: Returns a ReflectionType object if a parameter type is specified, NULL otherwise. Examples: ReflectionParameter::getType() example <?php function someFunction(int $param, $param2