php8.5
Home/ Manual/ predefined / closure/ Closure::bind

Closure::bind

PHP function Edit on GitHub ✎

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

Duplicates a closure with a specific bound object and class scope

Description

Closure::bind(Closure $closure, object|null $newThis, object|string|null $newScope = "static"): Closure|null

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.

newThis

The object to which the given anonymous function should be bound, or null for the closure to be unbound.

newScope

The class scope to which the closure is to be associated, or 'static' to keep the current one. If an object is given, the type of the object will be used instead. This determines the visibility of protected and private methods of the bound object. It is not allowed to pass (an object of) an internal class as this parameter.

Return Values

Returns a new Closure object, or null on failure.

Changelog

VersionDescription
8.5.0Binding an instance to a static closure, or binding a method from an incompatible class hierarchy, is now deprecated (these cases already emitted an E_WARNING).

Examples

Closure::bind() example

php
<?php
class A {
    private static $sfoo = 1;
    private $ifoo = 2;
}
$cl1 = static function() {
    return A::$sfoo;
};
$cl2 = function() {
    return $this->ifoo;
};

$bcl1 = Closure::bind($cl1, null, 'A');
$bcl2 = Closure::bind($cl2, new A(), 'A');
echo $bcl1(), "\n";
echo $bcl2(), "\n";
?>

The above example will output something similar to:

output
1
2

See Also

Source: language/predefined/closure/bind.xml · from the official PHP manual (php/doc-en)