imagewbmp

(PHP 4 >= 4.0.1, PHP 5, PHP 7) Output image to browser or file bool imagewbmp ( resource $image [, string $filename [, int $foreground ]] ) imagewbmp() outputs or save a WBMP version of the given image. Parameters: image An image resource, returned by one of the image creation functions, such as imagecreatetruecolor(). filename The path

bind_textdomain_codeset

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Specify the character encoding in which the messages from the DOMAIN message catalog will be returned string bind_textdomain_codeset ( string $domain, string $codeset ) With bind_textdomain_codeset(), you can set in which encoding will be messages from domain returned by gettext() and similar functions. Parameters: domain The domain

ifx_num_fields

(PHP 4, PHP <=5.2.0) Returns the number of columns in the query int ifx_num_fields ( resource $result_id ) After preparing or executing a query, this call gives you the number of columns in the query. Parameters: result_id result_id is a valid resultid returned by ifx_query() or ifx_prepare() (select type queries only!). Returns: Returns the n

sqlsrv_close

(No version information available, might only be in Git) Closes an open connection and releases resourses associated with the connection bool sqlsrv_close ( resource $conn ) Closes an open connection and releases resourses associated with the connection. Parameters: conn The connection to be closed. Returns: Returns TRUE on success or FALSE on fa

SWFFont::getDescent

(PHP 5 <= 5.3.0, PECL ming SVN) Returns the descent of the font, or 0 if not available float SWFFont::getDescent ( void ) This function is currently not documented; only its argument list is available. See also: SWFFont::getAscent() -

oci_client_version

(PHP 5.3.7, PHP 7, PECL OCI8 >= 1.4.6) Returns the Oracle client library version string oci_client_version ( void ) Returns a string containing the version number of the Oracle C client library that PHP is linked with. Returns: Returns the version number as a string. Notes: Oracle libraries before 10gR2 do not have the underlying functional

DOMElement::setIdAttribute

(PHP 5, PHP 7) Declares the attribute specified by name to be of type ID public void DOMElement::setIdAttribute ( string $name, bool $isId ) Declares the attribute name to be of type ID. Parameters: name The name of the attribute. isId Set it to TRUE if you want name to be of type ID, FALSE otherwise. Returns:

Yar_Concurrent_Client::loop

(PECL yar >= 1.0.0) Send all calls public static boolean Yar_Concurrent_Client::loop ([ callable $callback [, callable $error_callback ]] ) Send all registed remote RPC calls. Parameters: callback If this callback is set, then Yar will call this callback after all calls are sent and before any response return, with a $callinfo NULL. Then, if user didn't specify callb

stream_get_contents

(PHP 5, PHP 7) Reads remainder of a stream into a string string stream_get_contents ( resource $handle [, int $maxlength = -1 [, int $offset = -1 ]] ) Identical to file_get_contents(), except that stream_get_contents() operates on an already open stream resource and returns the remaining contents in a string, up to maxlength bytes and starting at the specified offset. Parameters: ha

gupnp_service_freeze_notify

(PECL gupnp >= 0.1.0) Freeze new notifications bool gupnp_service_freeze_notify ( resource $service ) Causes new notifications to be queued up until gupnp_service_thaw_notify() is called. Parameters: service A service identifier. Returns: Returns TRUE on success or FALSE on failure.