ReflectionClass::getConstructor

(PHP 5, PHP 7) Gets the constructor of the class public ReflectionMethod ReflectionClass::getConstructor ( void ) Gets the constructor of the reflected class. Returns: A ReflectionMethod object reflecting the class' constructor, or NULL if the class has no constructor. Examples: Basic usage of ReflectionClass::getConstructor()

Gmagick::getimagegreenprimary

(PECL gmagick >= Unknown) Returns the chromaticy green primary point public array Gmagick::getimagegreenprimary ( void ) Returns the chromaticity green primary point. Returns an array with the keys "x" and "y". Returns: Returns an array with the keys "x" and "y" on success. Exception: Throws an GmagickException on error.

MongoClient::setReadPreference

(PECL mongo >=1.3.0) Set the read preference for this connection public bool MongoClient::setReadPreference ( string $read_preference [, array $tags ] ) Parameters: read_preference The read preference mode: MongoClient::RP_PRIMARY, MongoClient::RP_PRIMARY_PREFERRED, MongoClient::RP_SECONDARY, MongoClient::RP_SECONDARY_PREFERRED, or MongoClient::RP_NEAREST.

ReflectionFunctionAbstract::getStaticVariables

(PHP 5, PHP 7) Gets static variables public array ReflectionFunctionAbstract::getStaticVariables ( void ) Get the static variables. Returns: An array of static variables. This function is currently not documented; only its argument list is available. See also: Reflecti

msql_list_tables

(PHP 4, PHP 5, PHP 7) List tables in an mSQL database resource msql_list_tables ( string $database [, resource $link_identifier ] ) msql_list_tables() lists the tables on the specified database. Parameters: database The name of the database. link_identifier The mSQL connection. If not specified, the last link opened by msql_connect() is

imagegammacorrect

(PHP 4, PHP 5, PHP 7) Apply a gamma correction to a GD image bool imagegammacorrect ( resource $image, float $inputgamma, float $outputgamma ) Applies gamma correction to the given gd image given an input and an output gamma. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). inputgamm

ps_show_xy2

(PECL ps >= 1.1.0) Output text at position bool ps_show_xy2 ( resource $psdoc, string $text, int $len, float $xcoor, float $ycoor ) Returns: Returns TRUE on success or FALSE on failure. This function is currently not documented; only its argument list is available.

Yaf_View_Simple::__set

(Yaf >=1.0.0) Set value to engine public void Yaf_View_Simple::__set ( string $name, mixed $value ) This is a alternative and easier way to Yaf_View_Simple::assign(). Parameters: name A string value name. value Mixed value. Returns: Examples: Yaf_

DOMDocument::createAttributeNS

(PHP 5, PHP 7) Create new attribute node with an associated namespace public DOMAttr DOMDocument::createAttributeNS ( string $namespaceURI, string $qualifiedName ) This function creates a new instance of class DOMAttr. This node will not show up in the document unless it is inserted with (e.g.) DOMNode::appendChild(). Parameters: namespaceURI The URI of the namespace.

GmagickDraw::polygon

(PECL gmagick >= Unknown) Draws a polygon public GmagickDraw GmagickDraw::polygon ( array $coordinates ) Draws a polygon using the current stroke, stroke width, and fill color or texture, using the specified array of coordinates. Parameters: coordinates coordinate array Returns: The GmagickDraw object on success