sqlsrv_has_rows

(No version information available, might only be in Git) Indicates whether the specified statement has rows bool sqlsrv_has_rows ( resource $stmt ) Indicates whether the specified statement has rows. Parameters: stmt A statement resource returned by sqlsrv_query() or sqlsrv_execute(). Returns: Returns TRUE if the specified statement has rows and

fann_get_num_output

(PECL fann >= 1.0.0) Get the number of output neurons int fann_get_num_output ( resource $ann ) Get the number of output neurons. Parameters: ann Neural network resource. Returns: Number of output neurons, or FALSE on error

ZMQDevice::__construct

(PECL zmq >= 0.5.0) Construct a new device ZMQDevice::__construct ( ZMQSocket $frontend, ZMQSocket $backend [, ZMQSocket $listener ] ) "ØMQ devices can do intermediation of addresses, services, queues, or any other abstraction you care to define above the message and socket layers." -- zguide Parameters: frontend Frontend parameter for the devices. Usually where there

HaruPage::closePath

(PECL haru >= 0.0.1) Append a straight line from the current point to the start point of the path bool HaruPage::closePath ( void ) Appends a straight line from the current point to the start point of the path. Returns: Returns TRUE on success. Exception: Throws a HaruException on error.

ctype_print

(PHP 4 >= 4.0.4, PHP 5, PHP 7) Check for printable character(s) bool ctype_print ( string $text ) Checks if all of the characters in the provided string, text, are printable. Parameters: text The tested string. Returns: Returns TRUE if every character in text will actually create output (including blanks). Returns FALSE if text contains contro

ps_hyphenate

(PECL ps >= 1.1.1) Hyphenates a word array ps_hyphenate ( resource $psdoc, string $text ) Hyphenates the passed word. ps_hyphenate() evaluates the value hyphenminchars (set by ps_set_value()) and the parameter hyphendict (set by ps_set_parameter()). hyphendict must be set before calling this function. This function requires the locale category LC_CTYPE to be set properly. This is done when the extension is initialized b

SolrQuery::addExpandFilterQuery

(PECL solr >= 2.2.0) Overrides main filter query, determines which documents to include in the main group. public SolrQuery SolrQuery::addExpandFilterQuery ( string $fq ) Overrides main filter query, determines which documents to include in the main group. Parameters: fq Overrides main filter query, determines which documents to include in the main group.

Gmagick::getimageformat

(PECL gmagick >= Unknown) Returns the format of a particular image in a sequence public string Gmagick::getimageformat ( void ) Returns the format of a particular image in a sequence. Returns: Returns a string containing the image format on success. Exception: Throws an GmagickException on error.

mb_stristr

(PHP 5 >= 5.2.0, PHP 7) Finds first occurrence of a string within another, case insensitive string mb_stristr ( string $haystack, string $needle [, bool $before_needle = false [, string $encoding = mb_internal_encoding() ]] ) mb_stristr() finds the first occurrence of needle in haystack and returns the portion of haystack. Unlike mb_strstr(), mb_stristr() is case-insensitive. If needle is not found, it returns FALSE.

Object Cloning

Examples: Creating a copy of an object with fully replicated properties is not always the wanted behavior. A good example of the need for copy constructors, is if you have an object which represents a GTK window and the object holds the resource of this GTK window, when you create a duplicate you might want to create a new window with the same properties and have the new object hold the resource of the new window. Another example is if your object holds a reference to