imagecolortransparent

(PHP 4, PHP 5, PHP 7) Define a color as transparent int imagecolortransparent ( resource $image [, int $color ] ) Sets the transparent color in the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). color A color identifier created with imagecolorallocate().

ErrorException::__construct

(PHP 5 >= 5.1.0, PHP 7) Constructs the exception public ErrorException::__construct ([ string $message = "" [, int $code = 0 [, int $severity = 1 [, string $filename = __FILE__ [, int $lineno = __LINE__ [, Exception $previous = NULL ]]]]]] ) Constructs the Exception. Parameters: message The Exception message to throw. code The Exception code.

Generator::getReturn

(PHP 7) Get the return value of a generator public mixed Generator::getReturn ( void ) Returns: Returns the generator's return value once it has finished executing. Examples: Generator::getReturn() example <?php $gen = (function() {     yield 1;     yield 2;     return 3; })(); foreach ($gen as $val) {     echo $val, 

ReflectionExtension::getConstants

(PHP 5, PHP 7) Gets constants public array ReflectionExtension::getConstants ( void ) Get defined constants from an extension. Returns: An associative array with constant names as keys. Examples: ReflectionExtension::getConstants() example <?php $ext = new ReflectionExtension('DOM'); print_r($ext->getConstants());

SoapClient::__doRequest

(PHP 5 >= 5.0.1, PHP 7) Performs a SOAP request public string SoapClient::__doRequest ( string $request, string $location, string $action, int $version [, int $one_way = 0 ] ) Performs SOAP request over HTTP. This method can be overridden in subclasses to implement different transport layers, perform additional XML processing or other purpose. Parameters: request Th

SDO_DAS_DataFactory::addPropertyToType

(^) Adds a property to a type void SDO_DAS_DataFactory::addPropertyToType ( string $parent_type_namespace_uri, string $parent_type_name, string $property_name, string $type_namespace_uri, string $type_name [, array $options ] ) Adds a property to a type. The type must already be known to the SDO_DAS_DataFactory (i.e. have been added using addType()). The property becomes a property of the type. This is how the graph model

ImagickDraw::line

(PECL imagick 2.0.0) Draws a line bool ImagickDraw::line ( float $sx, float $sy, float $ex, float $ey ) Draws a line on the image using the current stroke color, stroke opacity, and stroke width. Parameters: sx starting x coordinate sy starting y coordinate ex ending x coordinate

hw_api::dstofsrcanchor

(PHP 4, PHP 5 < 5.2.0, PECL hwapi SVN) Returns destination of a source anchor hw_api_object hw_api::dstofsrcanchor ( array $parameter ) Retrieves the destination object pointed by the specified source anchors. The destination object can either be a destination anchor or a whole document. Parameters: parameter The parameters array contains the required element 'objectI

count_chars

(PHP 4, PHP 5, PHP 7) Return information about characters used in a string mixed count_chars ( string $string [, int $mode = 0 ] ) Counts the number of occurrences of every byte-value (0..255) in string and returns it in various ways. Parameters: string The examined string. mode See return values. Returns: Dep

EvLoop::loopFork

(PECL ev >= 0.2.0) Must be called after a fork public void EvLoop::loopFork ( void ) Must be called after a fork in the child, before entering or continuing the event loop. An alternative is to use Ev::FLAG_FORKCHECK which calls this function automatically, at some performance loss (refer to the » libev documentation ). Returns: No value is returned.