ReflectionExtension::getClassNames

(PHP 5, PHP 7) Gets class names public array ReflectionExtension::getClassNames ( void ) Gets a listing of class names as defined in the extension. Returns: An array of class names, as defined in the extension. If no classes are defined, an empty array is returned. Examples: ReflectionExtension::getClassNames() example &l

CairoFontOptions::getHintMetrics

(PECL cairo >= 0.1.0) The getHintMetrics purpose public int CairoFontOptions::getHintMetrics ( void ) The method description goes here. Returns: Description... This function is currently not documented; only its argument list is available. Examples: CairoFontOptions::getHintMetrics() examp

Memcached::getDelayed

(PECL memcached >= 0.1.0) Request multiple items public bool Memcached::getDelayed ( array $keys [, bool $with_cas [, callable $value_cb ]] ) Memcached::getDelayed() issues a request to memcache for multiple items the keys of which are specified in the keys array. The method does not wait for response and returns right away. When you are ready to collect the items, call either Memcached::fetch() or Memcached::fetchAll().

gzputs

(PHP 4, PHP 5, PHP 7) Alias of gzwrite() This function is an alias of: gzwrite().

Weakref::valid

(PECL weakref >= 0.1.0) Checks whether the object referenced still exists public bool Weakref::valid ( void ) Checks whether the object referenced still exists. Returns: Returns TRUE if the object still exists and is thus still accessible via Weakref::get(), FALSE otherwise. See also: Weakref::get() -

ReflectionParameter::__construct

(PHP 5, PHP 7) Construct public ReflectionParameter::__construct ( string $function, string $parameter ) Constructs a ReflectionParameter class. Parameters: function The function to reflect parameters from. parameter The parameter. Returns: No value is returned. This functio

maxdb_stmt_error

(PECL maxdb >= 1.0) Returns a string description for last statement error string maxdb_stmt_error ( resource $stmt ) Procedural style Object oriented style string $maxdb_stmt->error; For the statement specified by stmt, maxdb_stmt_error() returns a containing the error message for the most recently invoked statement function that can succeed or fail. Returns: A string that describes the err

Visibility

Examples: Property declaration Class properties must be defined as public, private, or protected. If declared using var, the property will be defined as public. <?php /**  * Define MyClass  */ class MyClass {     public $public = 'Public';     protected $protected = 'Protected';     private $private = 'Private';     function printHello()     {         echo $this->public;         echo $this->protected;         echo $this->private;     } } $obj = new MyC

m_setssl_cafile

(PHP 5 >= 5.0.5, PHP 7, PECL mcve >= 1.0.0) Set SSL CA (Certificate Authority) file for verification of server certificate int m_setssl_cafile ( resource $conn, string $cafile ) Parameters: conn An MCVE_CONN resource returned by m_initengine(). cafile An MCVE_CONN resource returned by m_initengine(). Returns:

ImagickDraw::getStrokeColor

(PECL imagick 2.0.0) Returns the color used for stroking object outlines ImagickPixel ImagickDraw::getStrokeColor ( void ) Returns the color used for stroking object outlines. Parameters: stroke_color Returns the color used for stroking object outlines. Returns: Returns an ImagickPixel object which describes the color.