trader_stochf

(PECL trader >= 0.2.0) Stochastic Fast array trader_stochf ( array $high, array $low, array $close [, integer $fastK_Period [, integer $fastD_Period [, integer $fastD_MAType ]]] ) Parameters: high High price, array of real values. low Low price, array of real values. close Closing price, array of rea

EventDnsBase::countNameservers

(PECL event >= 1.2.6-beta) Gets the number of configured nameservers public int EventDnsBase::countNameservers ( void ) Gets the number of configured nameservers Returns: Returns the number of configured nameservers(not necessarily the number of running nameservers). This is useful for double-checking whether our calls to the various nameserver configuration functions have been successful.

PDF_end_page

(PHP 4, PECL pdflib >= 1.0.0) Finish page bool PDF_end_page ( resource $p ) Finishes the page. Returns TRUE on success or FALSE on failure.

ReflectionExtension::__clone

(PHP 5, PHP 7) Clones final private void ReflectionExtension::__clone ( void ) The clone method prevents an object from being cloned. Reflection objects cannot be cloned. Returns: No value is returned, if called a fatal error will occur. See also: ReflectionExtension::__construct() -

ReflectionExtension::export

(PHP 5, PHP 7) Export public static string ReflectionExtension::export ( string $name [, string $return = false ] ) Exports a reflected extension. The output format of this function is the same as the CLI argument --re [extension]. Parameters: name The reflection to export. return Setting to TRUE will return the export, as opposed to e

PDO::inTransaction

(PHP 5 >= 5.3.3, Bundled pdo_pgsql, PHP 7) Checks if inside a transaction public bool PDO::inTransaction ( void ) Checks if a transaction is currently active within the driver. This method only works for database drivers that support transactions. Returns: Returns TRUE if a transaction is currently active, and FALSE if not.

ReflectionExtension::getClassNames

(PHP 5, PHP 7) Gets class names public array ReflectionExtension::getClassNames ( void ) Gets a listing of class names as defined in the extension. Returns: An array of class names, as defined in the extension. If no classes are defined, an empty array is returned. Examples: ReflectionExtension::getClassNames() example &l

gupnp_service_action_return

(PECL gupnp >= 0.1.0) Return successfully bool gupnp_service_action_return ( resource $action ) Return successfully. Parameters: action A service action identifier. Returns: Returns TRUE on success or FALSE on failure. See also: gupnp_service_action_return_e

xdiff_string_diff_binary

(PECL xdiff >= 0.2.0) Alias of xdiff_string_bdiff string xdiff_string_bdiff ( string $old_data, string $new_data ) Makes a binary diff of two strings and returns the result. This function works with both text and binary data. Resulting patch can be later applied using xdiff_string_bpatch()/xdiff_file_bpatch(). Starting with version 1.5.0 this function is an alias of xdiff_string_bdiff(). Parameters:

PDO::lastInsertId

(PHP 5 >= 5.1.0, PHP 7, PECL pdo >= 0.1.0) Returns the ID of the last inserted row or sequence value public string PDO::lastInsertId ([ string $name = NULL ] ) Returns the ID of the last inserted row, or the last value from a sequence object, depending on the underlying driver. For example, PDO_PGSQL requires you to specify the name of a sequence object for the name parameter. Note: This method may not return a