DOMCharacterData::deleteData

(PHP 5, PHP 7) Remove a range of characters from the node void DOMCharacterData::deleteData ( int $offset, int $count ) Deletes count characters starting from position offset. Parameters: offset The offset from which to start removing. count The number of characters to delete. If the sum of offset and count exceeds the length, then a

Phar::mungServer

(Unknown) Defines a list of up to 4 $_SERVER variables that should be modified for execution final public static void Phar::mungServer ( array $munglist ) Phar::mungServer() should only be called within the stub of a phar archive. Defines a list of up to 4 $_SERVER variables that should be modified for execution. Variables that can be modified to remove traces of phar execution are REQUEST_URI, PHP_SELF, SCRIPT_NAME and S

SplFileObject::rewind

(PHP 5 >= 5.1.0, PHP 7) Rewind the file to the first line public void SplFileObject::rewind ( void ) Rewinds the file back to the first line. Returns: No value is returned. Exception: Throws a RuntimeException if cannot be rewound. Examples: SplFileObject::rewind() example <?php $file = new SplFil

get_object_vars

(PHP 4, PHP 5, PHP 7) Gets the properties of the given object array get_object_vars ( object $object ) Gets the accessible non-static properties of the given object according to scope. Parameters: object An object instance. Returns: Returns an associative array of defined object accessible non-static properties for the specified object in scope.

ReflectionClass::hasConstant

(PHP 5 >= 5.1.0, PHP 7) Checks if constant is defined public bool ReflectionClass::hasConstant ( string $name ) Checks whether the class has a specific constant defined or not. Parameters: name The name of the constant being checked for. Returns: TRUE if the constant is defined, otherwise FALSE.

FilterIterator::accept

(PHP 5 >= 5.1.0, PHP 7) Check whether the current element of the iterator is acceptable public abstract bool FilterIterator::accept ( void ) Returns whether the current element of the iterator is acceptable through this filter. Returns: TRUE if the current element is acceptable, otherwise FALSE. Examples: FilterIterator::accept() ex

ibase_blob_close

(PHP 5, PHP 7) Close blob mixed ibase_blob_close ( resource $blob_handle ) This function closes a BLOB that has either been opened for reading by ibase_blob_open() or has been opened for writing by ibase_blob_create(). Parameters: blob_handle A BLOB handle opened with ibase_blob_create() or ibase_blob_open(). Returns: If the BLOB was being read,

SWFMovie::remove

(PHP 5.2.1-5.3.0, PHP 7, PECL ming SVN) Removes the object instance from the display list void SWFMovie::remove ( object $instance ) Removes the given object instance from the display list. Returns: No value is returned. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future

EvStat::prev

(PECL ev >= 0.2.0) Returns the previous set of values returned by EvStat::attr public void EvStat::prev ( void ) Just like EvStat::attr() , but returns the previous set of values. Returns: Returns an array with the same structure as the array returned by EvStat::attr() . The array contains previously detected values. See also:

tidyNode::isHtml

(PHP 5 >= 5.0.1, PHP 7) Checks if a node is part of a HTML document bool tidyNode::isHtml ( void ) Tells if the node is part of HTML document. Returns: Returns TRUE if the node is part of a HTML document, FALSE otherwise. Notes: This function was named tidy_node::is_html() in PHP 4/Tidy 1. Examples: Ext