newt_form_add_components

(PECL newt >= 0.1) Add several components to the form void newt_form_add_components ( resource $form, array $components ) Adds several components to the form. Parameters: form Form to which components will be added components Array of components to add to the form Returns: No value is returned.

finfo_file

(PHP >= 5.3.0, PECL fileinfo >= 0.1.0) Return information about a file string finfo_file ( resource $finfo, string $file_name = NULL [, int $options = FILEINFO_NONE [, resource $context = NULL ]] ) Procedural style Object oriented style public string finfo::file ( string $file_name = NULL [, int $options = FILEINFO_NONE [, resource $context = NULL ]] ) This function is used to get information about a file.

eio_seek

(PECL eio >= 0.5.0b) Repositions the offset of the open file associated with the fd argument to the argument offset according to the directive whence resource eio_seek ( mixed $fd, int $offset, int $whence [, int $pri = EIO_PRI_DEFAULT [, callable $callback = NULL [, mixed $data = NULL ]]] ) eio_seek() repositions the offset of the open file associated with stream, Socket resource, or file descriptor specified by fd to

DirectoryIterator::isDot

(PHP 5, PHP 7) Determine if current DirectoryIterator item is '.' or '..' public bool DirectoryIterator::isDot ( void ) Determines if the current DirectoryIterator item is a directory and either . or ... Returns: TRUE if the entry is . or .., otherwise FALSE Examples: A DirectoryIterator::isDot() example This example will

stripslashes

(PHP 4, PHP 5, PHP 7) Un-quotes a quoted string string stripslashes ( string $str ) Un-quotes a quoted string. Note: If magic_quotes_sybase is on, no backslashes are stripped off but two apostrophes are replaced by one instead. An example use of stripslashes() is when the PHP directive magic_quotes_gpc is on (it was on by default before PHP 5.4), and you aren't inserting this data into a place (such as a database) tha

stream_socket_enable_crypto

(PHP 5 >= 5.1.0, PHP 7) Turns encryption on/off on an already connected socket mixed stream_socket_enable_crypto ( resource $stream, bool $enable [, int $crypto_type [, resource $session_stream ]] ) Enable or disable encryption on the stream. Once the crypto settings are established, cryptography can be turned on and off dynamically by passing TRUE or FALSE in the enable parameter. Parameters:

EvFork::createStopped

(PECL ev >= 0.2.0) Creates a stopped instance of EvFork watcher class final public static object EvFork::createStopped ( string $callback [, string $data [, string $priority ]] ) The same as EvFork::__construct() , but doesn't start the watcher automatically. Parameters: callback See Watcher callbacks . data Custom data associated

DOMEntityReference::__construct

(PHP 5, PHP 7) Creates a new DOMEntityReference object public DOMEntityReference::__construct ( string $name ) Creates a new DOMEntityReference object. Parameters: name The name of the entity reference. Examples: Creating a new DOMEntityReference <?php $dom = new DOMDocument('1.0', 

ArrayIterator::uasort

(PHP 5 >= 5.2.0, PHP 7) User defined sort public void ArrayIterator::uasort ( string $cmp_function ) Sort the entries by values using user defined function. Parameters: cmp_function The compare function used for the sort. Returns: No value is returned. This function is currently not documented; only its ar

runkit_constant_redefine

(PECL runkit >= 0.7.0) Redefine an already defined constant bool runkit_constant_redefine ( string $constname, mixed $newvalue ) Parameters: constname Constant to redefine. Either string indicating global constant, or classname::constname indicating class constant. newvalue New value to assign to constant. Returns