newt_radiobutton

(PECL newt >= 0.1) resource newt_radiobutton ( int $left, int $top, string $text, bool $is_default [, resource $prev_button ] ) Parameters: left top text is_default prev_button Returns: This funct

mysqli::rpl_query_type

(PHP 5, PHP 7) Returns RPL query type int mysqli::rpl_query_type ( string $query ) Object oriented style Procedural style int mysqli_rpl_query_type ( mysqli $link , string $query ) Returns MYSQLI_RPL_MASTER, MYSQLI_RPL_SLAVE or MYSQLI_RPL_ADMIN depending on a query type. INSERT, UPDATE and similar are master queries, SELECT is slave, and FLUSH, REPAIR and similar are admin. Thi

fbsql_set_lob_mode

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Set the LOB retrieve mode for a FrontBase result set bool fbsql_set_lob_mode ( resource $result, int $lob_mode ) Sets the mode for retrieving LOB data from the database. When BLOB and CLOB data is retrieved in FrontBase it can be retrieved direct or indirect. Direct retrieved LOB data will always be fetched no matter the setting of the lob mode. If the LOB data is less than 512 bytes it wi

imagecreatefromgd2part

(PHP 4 >= 4.0.7, PHP 5, PHP 7) Create a new image from a given part of GD2 file or URL resource imagecreatefromgd2part ( string $filename, int $srcX, int $srcY, int $width, int $height ) Create a new image from a given part of GD2 file or URL. TipA URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Proto

udm_api_version

(PHP 4 >= 4.0.5, PHP 5 <= 5.0.5, PECL mnogosearch >= 1.0.0) Get mnoGoSearch API version int udm_api_version ( void ) Gets the mnoGoSearch API version. This function allows the user to identify which API functions are available, e.g. udm_get_doc_count() function is only available in mnoGoSearch 3.1.11 or later. Returns: udm_api_version() returns the mnoGoSearch API version number. E.g. i

ImagickDraw::popClipPath

(PECL imagick 2.0.0) Terminates a clip path definition bool ImagickDraw::popClipPath ( void ) Terminates a clip path definition. Returns: No value is returned. This function is currently not documented; only its argument list is available.

Gmagick::despeckleimage

(PECL gmagick >= Unknown) The despeckleimage purpose public Gmagick Gmagick::despeckleimage ( void ) Reduces the speckle noise in an image while preserving the edges of the original image. Returns: The despeckled Gmagick object on success. Exception: Throws an GmagickException on error. Examples: Gmagick::despeckle

RarArchive::getComment

(PECL rar >= 2.0.0) Get comment text from the RAR archive public string RarArchive::getComment ( void ) Object oriented style (method): Procedural style: string rar_comment_get ( RarArchive $rarfile ) Get the (global) comment stored in the RAR archive. It may be up to 64 KiB long. Note: This extension does not support comments at the entry level. Parameters: rarfile

mb_detect_order

(PHP 4 >= 4.0.6, PHP 5, PHP 7) Set/Get character encoding detection order mixed mb_detect_order ([ mixed $encoding_list = mb_detect_order() ] ) Sets the automatic character encoding detection order to encoding_list. Parameters: encoding_list encoding_list is an array or comma separated list of character encoding. See supported encodings. If encoding_list is omitted,

Class Constants

Examples: Defining and using a constant It is possible to define constant values on a per-class basis remaining the same and unchangeable. Constants differ from normal variables in that you don't use the $ symbol to declare or use them. The value must be a constant expression, not (for example) a variable, a property, or a function call. It's also possible for interfaces to have constants. Look at the interface documentation for examples. As of PHP 5.3.0, it's po