imap_setflag_full

(PHP 4, PHP 5, PHP 7) Sets flags on messages bool imap_setflag_full ( resource $imap_stream, string $sequence, string $flag [, int $options = NIL ] ) Causes a store to add the specified flag to the flags set for the messages in the specified sequence. Parameters: imap_stream An IMAP stream returned by imap_open(). sequence A sequence of

sys_get_temp_dir

(PHP 5 >= 5.2.1, PHP 7) Returns directory path used for temporary files string sys_get_temp_dir ( void ) Returns the path of the directory PHP stores temporary files in by default. Returns: Returns the path of the temporary directory. Examples: sys_get_temp_dir() example <?php // Create a temporary file in the tempo

EmptyIterator::current

(PHP 5 >= 5.1.0, PHP 7) The current() method public mixed EmptyIterator::current ( void ) This function must not be called. It throws an exception upon access. Returns: No value is returned. This function is currently not documented; only its argument list is available. Exception: Throws an Exception if called.

Exception::getMessage

(PHP 5 >= 5.1.0, PHP 7) Gets the Exception message final public string Exception::getMessage ( void ) Returns the Exception message. Returns: Returns the Exception message as a string. Examples: Exception::getMessage() example <?php try {     throw new Exception("Some error message"); } catch(Exception $e) {     ech

ZipArchive::unchangeName

(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.5.0) Revert all changes done to an entry with the given name. bool ZipArchive::unchangeName ( string $name ) Revert all changes done to an entry. Parameters: name Name of the entry. Returns: Returns TRUE on success or FALSE on failure.

Error::getTraceAsString

(No version information available, might only be in Git) Gets the stack trace as a string final public string Error::getTraceAsString ( void ) Returns the stack trace as a string. Returns: Returns the stack trace as a string. Examples: Error::getTraceAsString() example <?php function test() {     throw new Error; } tr

ldap_sort

(PHP 4 >= 4.2.0, PHP 5, PHP 7) Sort LDAP result entries bool ldap_sort ( resource $link, resource $result, string $sortfilter ) Sort the result of a LDAP search, returned by ldap_search(). Parameters: link An LDAP link identifier, returned by ldap_connect(). result An search result identifier, returned by ldap_search().

RecursiveCallbackFilterIterator::hasChildren

(PHP 5 >= 5.4.0, PHP 7) Check whether the inner iterator's current element has children public bool RecursiveCallbackFilterIterator::hasChildren ( void ) Returns TRUE if the current element has children, FALSE otherwise. Returns: Returns TRUE if the current element has children, FALSE otherwise. Examples: RecursiveCallbackFilterIter

SplObjectStorage::getInfo

(PHP 5 >= 5.3.0, PHP 7) Returns the data associated with the current iterator entry public mixed SplObjectStorage::getInfo ( void ) Returns the data, or info, associated with the object pointed by the current iterator position. Returns: The data associated with the current iterator position. Examples: SplObjectStorage::getInfo() exa

rsort

(PHP 4, PHP 5, PHP 7) Sort an array in reverse order bool rsort ( array &$array [, int $sort_flags = SORT_REGULAR ] ) This function sorts an array in reverse order (highest to lowest). Parameters: array The input array. sort_flags You may modify the behavior of the sort using the optional parameter sort_flags, for details see sort(