SimpleXMLElement::getName

(PHP 5 >= 5.1.3, PHP 7) Gets the name of the XML element public string SimpleXMLElement::getName ( void ) Gets the name of the XML element. Returns: The getName method returns as a string the name of the XML tag referenced by the SimpleXMLElement object. Examples: Get XML element names Note: Listed examples may includ

ReflectionFunctionAbstract::isInternal

(PHP 5, PHP 7) Checks if is internal public bool ReflectionFunctionAbstract::isInternal ( void ) Checks whether the function is internal, as opposed to user-defined. Returns: TRUE if it's internal, otherwise FALSE This function is currently not documented; only its argument list is available.

imap_mail_copy

(PHP 4, PHP 5, PHP 7) Copy specified messages to a mailbox bool imap_mail_copy ( resource $imap_stream, string $msglist, string $mailbox [, int $options = 0 ] ) Copies mail messages specified by msglist to specified mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). msglist msglist is a range not just message number

preg_replace_callback_array

(PHP 7) Perform a regular expression search and replace using callbacks mixed preg_replace_callback_array ( array $patterns_and_callbacks, mixed $subject [, int $limit = -1 [, int &$count ]] ) The behavior of this function is similar to preg_replace_callback(), except that callbacks are executed on a per-pattern basis. Parameters: patterns_and_callbacks An associativ

SDO_Model_Type::getBaseType

(^) Get the base type for this type SDO_Model_Type SDO_Model_Type::getBaseType ( void ) Get the base type for this type. Returns the SDO_Model_Type for the base type if this type inherits from another, otherwise returns NULL. An example of when base types occur is when a type defined in XML schema inherits from another type by using <extension base="..."> Returns: Returns the SDO_Model_T

trader_t3

(PECL trader >= 0.2.0) Triple Exponential Moving Average (T3) array trader_t3 ( array $real [, integer $timePeriod [, float $vFactor ]] ) Parameters: real Array of real values. timePeriod Number of period. Valid range from 2 to 100000. vFactor Volume Factor. Valid range from 1 to 0.

openssl_pkcs12_export

(PHP 5 >= 5.2.2, PHP 7) Exports a PKCS#12 Compatible Certificate Store File to variable. bool openssl_pkcs12_export ( mixed $x509, string &$out, mixed $priv_key, string $pass [, array $args ] ) openssl_pkcs12_export() stores x509 into a string named by out in a PKCS#12 file format. Parameters: x509 See Key/Certificate parameters for a list of valid values.

IntlCalendar::setSkippedWallTimeOption

(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1) Set behavior for handling skipped wall times at positive timezone offset transitions public bool IntlCalendar::setSkippedWallTimeOption ( int $wallTimeOption ) Object oriented style Procedural style bool intlcal_set_skipped_wall_time_option ( IntlCalendar $cal , int $wallTimeOption ) Sets the current strategy for dealing with wall times that are skipped whenever the clock is forwar

SplObjectStorage::attach

(PHP 5 >= 5.1.0, PHP 7) Adds an object in the storage public void SplObjectStorage::attach ( object $object [, mixed $data = NULL ] ) Adds an object inside the storage, and optionally associate it to some data. Parameters: object The object to add. data The data to associate with the object. Returns: No va

EventHttpRequest::sendReplyStart

(PECL event >= 1.4.0-beta) Initiate a chunked reply public void EventHttpRequest::sendReplyStart ( int $code , string $reason ) Initiate a reply that uses Transfer-Encoding chunked . This allows the caller to stream the reply back to the client and is useful when either not all of the reply data is immediately available or when sending very large replies. The caller needs to supply data chunks with EventHttpRequest: