No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

Closure::bind

(PHP 5 >= 5.4.0, PHP 7)

Closure::bind Duplicates a closure with a specific bound object and class scope

Description

public static Closure::bind ( Closure $closure , object $newthis [, mixed $newscope = "static" ] ) : Closure

This method is a static version of Closure::bindTo(). See the documentation of that method for more information.

PHP: Closure::bind - Manual Home of Manuel PHP  Contents Haut

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 associate 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.

PHP: Closure::bind - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns a new Closure object or FALSE on failure

PHP: Closure::bind - Manual Home of Manuel PHP  Contents Haut

Changelog

Version Description
7.0.0 newscope can not be (an object of) an internal class anymore, what was possible prior to this version.

PHP: Closure::bind - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 Closure::bind() example

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

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

The above example will output something similar to:

1
2

PHP: Closure::bind - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph