mysqli_stmt::more_results

(PHP 5 >= 5.3.0, PHP 7) Check if there are more query results from a multiple query public bool mysqli_stmt::more_results ( void ) Object oriented style (method): Procedural style: bool mysqli_stmt_more_results ( mysql_stmt $stmt ) Checks if there are more query results from a multiple query. Parameters: stmt Procedural style only: A statement identifier returned by my

MongoCollection::drop

(PECL mongo >=0.9.0) Drops this collection public array MongoCollection::drop ( void ) Drops this collection and deletes its indices. Returns: Returns the database response. Examples: MongoCollection::drop() example This example demonstrates how to drop a collection and the response to expect. <?php $collection = $

DOMDocument::saveXML

(PHP 5, PHP 7) Dumps the internal XML tree back into a string public string DOMDocument::saveXML ([ DOMNode $node [, int $options ]] ) Creates an XML document from the DOM representation. This function is usually called after building a new dom document from scratch as in the example below. Parameters: node Use this parameter to output only a specific node without XML d

imagecopy

(PHP 4, PHP 5, PHP 7) Copy part of an image bool imagecopy ( resource $dst_im, resource $src_im, int $dst_x, int $dst_y, int $src_x, int $src_y, int $src_w, int $src_h ) Copy a part of src_im onto dst_im starting at the x,y coordinates src_x, src_y with a width of src_w and a height of src_h. The portion defined will be copied onto the x,y coordinates, dst_x and dst_y. Parameters: ds

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.

trader_stochrsi

(PECL trader >= 0.2.0) Stochastic Relative Strength Index array trader_stochrsi ( array $real [, integer $timePeriod [, integer $fastK_Period [, integer $fastD_Period [, integer $fastD_MAType ]]]] ) Parameters: real Array of real values. timePeriod Number of period. Valid range from 2 to 100000. fastK_Period

Using namespaces: fallback to global function/constant

(PHP 5 >= 5.3.0, PHP 7) Examples: Accessing global classes inside a namespace Inside a namespace, when PHP encounters an unqualified Name in a class name, function or constant context, it resolves these with different priorities. Class names always resolve to the current namespace name. Thus to access internal or non-namespaced user classes, one must refer to them with their fully quali

IntlDateFormatter::getCalendar

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0) Get the calendar type used for the IntlDateFormatter int IntlDateFormatter::getCalendar ( void ) Object oriented style Procedural style int datefmt_get_calendar ( IntlDateFormatter $fmt ) Parameters: fmt The formatter resource Returns: The calendar type being used by the formatter. Either IntlD

libxml_disable_entity_loader

(PHP 5 >= 5.2.11, PHP 7) Disable the ability to load external entities bool libxml_disable_entity_loader ([ bool $disable = true ] ) Disable/enable the ability to load external entities. Parameters: disable Disable (TRUE) or enable (FALSE) libxml extensions (such as DOM, XMLWriter and XMLReader) to load external entities. Returns: Returns the

Imagick::randomThresholdImage

(PECL imagick 2.0.0) Creates a high-contrast, two-color image bool Imagick::randomThresholdImage ( float $low, float $high [, int $channel = Imagick::CHANNEL_ALL ] ) Changes the value of individual pixels based on the intensity of each pixel compared to threshold. The result is a high-contrast, two color image. This method is available if Imagick has been compiled against ImageMagick version 6.2.9 or newer.