Closure::call

(PHP 7) Binds and calls the closure public mixed Closure::call ( object $newthis [, mixed $... ] ) Temporarily binds the closure to newthis, and calls it with any given parameters. Parameters: newthis The object to bind the closure to for the duration of the call. ... Zero or more parameters, which will be given as parameters to the clo

Serializable::serialize

(PHP 5 >= 5.1.0, PHP 7) String representation of object abstract public string Serializable::serialize ( void ) Should return the string representation of the object. Note: This method acts as the destructor of the object. The __destruct() method will not be called after this method. Returns: Returns the string representation of the object or NULL Exception:

Closure::bindTo

(PHP 5 >= 5.4.0, PHP 7) Duplicates the closure with a new bound object and class scope public Closure Closure::bindTo ( object $newthis [, mixed $newscope = "static" ] ) Create and return a new anonymous function with the same body and bound variables as this one, but possibly with a different bound object and a new class scope. The “bound object” determines the value $this will have in the function body and the “cla

Closure::__construct

(PHP 5 >= 5.3.0, PHP 7) Constructor that disallows instantiation private Closure::__construct ( void ) This method exists only to disallow instantiation of the Closure class. Objects of this class are created in the fashion described on the anonymous functions page. Returns: This method has no return value; it simply emits an error (of type E_RECOVERABLE_ERROR).

Serializable::unserialize

(PHP 5 >= 5.1.0, PHP 7) Constructs the object abstract public void Serializable::unserialize ( string $serialized ) Called during unserialization of the object. Note: This method acts as the constructor of the object. The __construct() method will not be called after this method. Parameters: serialized The string representation of the object.

Generator::current

(PHP 5 >= 5.5.0, PHP 7) Get the yielded value public mixed Generator::current ( void ) Returns: Returns the yielded value.

Closure::bind

(PHP 5 >= 5.4.0, PHP 7) Duplicates a closure with a specific bound object and class scope public static Closure Closure::bind ( Closure $closure, object $newthis [, mixed $newscope = "static" ] ) This method is a static version of Closure::bindTo(). See the documentation of that method for more information. Parameters: closure The anonymous functions to bind.

ArrayAccess::offsetExists

(PHP 5 >= 5.0.0, PHP 7) Whether an offset exists abstract public boolean ArrayAccess::offsetExists ( mixed $offset ) Whether or not an offset exists. This method is executed when using isset() or empty() on objects implementing ArrayAccess. Note: When using empty() ArrayAccess::offsetGet() will be called and checked if empty only if ArrayAccess::offsetExists() returns TRUE. Parameters:

ArrayAccess::offsetSet

(PHP 5 >= 5.0.0, PHP 7) Assign a value to the specified offset abstract public void ArrayAccess::offsetSet ( mixed $offset, mixed $value ) Assigns a value to the specified offset. Parameters: offset The offset to assign the value to. value The value to set. Returns: No value is returned.

Throwable::__toString

(PHP 7) Gets a string representation of the thrown object abstract public string Throwable::__toString ( void ) Returns: Returns the string representation of the thrown object. See also: Exception::__toString() -