Throwable::getPrevious

(PHP 7) Returns the previous Throwable abstract public Throwable Throwable::getPrevious ( void ) Returns any previous Throwable (for example, one provided as the third parameter to Exception::__construct()). Returns: Returns the previous Throwable if available, or NULL otherwise. See also: Exception::getPrevious

ArrayAccess::offsetUnset

(PHP 5 >= 5.0.0, PHP 7) Unset an offset abstract public void ArrayAccess::offsetUnset ( mixed $offset ) Unsets an offset. Note: This method will not be called when type-casting to (unset) Parameters: offset The offset to unset. Returns: No value is returned.

ArrayAccess::offsetGet

(PHP 5 >= 5.0.0, PHP 7) Offset to retrieve abstract public mixed ArrayAccess::offsetGet ( mixed $offset ) Returns the value at specified offset. This method is executed when checking if offset is empty(). Parameters: offset The offset to retrieve. Returns: Can return all value types. Notes:

Throwable::getLine

(PHP 7) Gets the line on which the object was instantiated abstract public int Throwable::getLine ( void ) Returns the line number where the thrown object was instantiated. Returns: Returns the line number where the thrown object was instantiated. See also: Exception::getLine() -

Throwable::getTrace

(PHP 7) Gets the stack trace abstract public array Throwable::getTrace ( void ) Returns the stack trace as an array. Returns: Returns the stack trace as an array in the same format as debug_backtrace(). See also: Exception::getTrace() -

Throwable::getTraceAsString

(PHP 7) Gets the stack trace as a string abstract public string Throwable::getTraceAsString ( void ) Returns: Returns the stack trace as a string. See also: Exception::getTraceAsString() -

Throwable::getCode

(PHP 7) Gets the exception code abstract public int Throwable::getCode ( void ) Returns the error code associated with the thrown object. Returns: Returns the exception code as integer in Exception but possibly as other type in Exception descendants (for example as string in PDOException). See also: Exception::g

Throwable::getFile

(PHP 7) Gets the file in which the exception occurred abstract public string Throwable::getFile ( void ) Returns the name of the file from which the object was thrown. Returns: Returns the name of the file from which the object was thrown. See also: Exception::getFile() -

IteratorAggregate::getIterator

(PHP 5 >= 5.0.0, PHP 7) Retrieve an external iterator abstract public Traversable IteratorAggregate::getIterator ( void ) Returns an external iterator. Returns: An instance of an object implementing Iterator or Traversable Exception: Throws an Exception on failure.

Iterator::rewind

(PHP 5 >= 5.0.0, PHP 7) Rewind the Iterator to the first element abstract public void Iterator::rewind ( void ) Rewinds back to the first element of the Iterator. Note: This is the first method called when starting a foreach loop. It will not be executed after foreach loops. Returns: Any returned value is ignored.