get_resource_type

(PHP 4 >= 4.0.2, PHP 5, PHP 7) Returns the resource type string get_resource_type ( resource $handle ) This function gets the type of the given resource. Parameters: handle The evaluated resource handle. Returns: If the given handle is a resource, this function will return a string representing its type. If the type is not identified by this

CairoContext::__construct

(PECL cairo >= 0.1.0) Creates a new CairoContext public CairoContext::__construct ( CairoSurface $surface ) Creates a new CairoContext object to draw Parameters: surface A valid CairoSurface like CairoImageSurface or CairoPdfSurface Returns: A CairoContext Examples: CairoContext::_

newt_listitem

(PECL newt >= 0.1) resource newt_listitem ( int $left, int $top, string $text, bool $is_default, resouce $prev_item, mixed $data [, int $flags ] ) Parameters: left top text is_default prev_item data

ingres_errsqlstate

(PECL ingres >= 1.1.0) Get the last SQLSTATE error code generated string ingres_errsqlstate ([ resource $link ] ) Returns a string containing the last SQLSTATE, or NULL if no error has occurred. If a link resource is passed to ingres_errsqlstate(), it returns the last error recorded for the link. If no link is passed, then ingres_errsqlstate() returns the last error reported using the default link. The function, ingre

Memcache::decrement

(PECL memcache >= 0.2.0) Decrement item's value int Memcache::decrement ( string $key [, int $value = 1 ] ) Memcache::decrement() decrements value of the item by value. Similarly to Memcache::increment(), current value of the item is being converted to numerical and after that value is subtracted. Note: New item's value will not be less than zero. Note: Do not use Memcache::decrement() with item, which was store

SDO_Model_ReflectionDataObject::getInstanceProperties

(^) Get the instance properties of the SDO_DataObject array SDO_Model_ReflectionDataObject::getInstanceProperties ( void ) Get the instance properties for the SDO_DataObject. The instance properties consist of all the properties defined on the data object's type, plus any instance properties from open content (if the data object is an open type). Returns: An array of SDO_Model_Property objects.

tidyNode::isJste

(PHP 5 >= 5.0.1, PHP 7) Checks if this node is JSTE bool tidyNode::isJste ( void ) Tells if the node is JSTE. Returns: Returns TRUE if the node is JSTE, FALSE otherwise. Notes: This function was named tidy_node::is_jste() in PHP 4/Tidy 1. Examples: Extract JSTE code from a mixed HTML document

EventListener::setErrorCallback

(PECL event >= 1.2.6-beta) Set event listener's error callback public void EventListener::setErrorCallback ( string $cb ) Set event listener's error callback Parameters: cb The error callback. Should match the following prototype: void callback ([ EventListener $listener = NULL [, mixed $data = NULL ]] ) Returns:

array_column

(PHP 5 >= 5.5.0, PHP 7) Return the values from a single column in the input array array array_column ( array $input, mixed $column_key [, mixed $index_key = null ] ) array_column() returns the values from a single column of the input, identified by the column_key. Optionally, an index_key may be provided to index the values in the returned array by the values from the index_key column of the input array.

$_GET

(PHP 4 >= 4.1.0, PHP 5, PHP 7) HTTP GET variables An associative array of variables passed to the current script via the URL parameters. $HTTP_GET_VARS contains the same initial information, but is not a superglobal. (Note that $HTTP_GET_VARS and $_GET are different variables and that PHP handles them as such) Changelog: 4.1.0 Introduced $_GET that deprecated $HTTP_GET_VA