Closure::bind

(PHP 5 >= 5.4.0, PHP 7)

Closure::bind Дублирует замыкание с указанием связанного объекта и области видимости класса

Описание

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

Этот метод является статическим вариантом Closure::bindTo(). Смотрите документацию к указанному методу для подробной информации.

Список параметров

closure

Анонимная функция для привязывания к объекту

newthis

Объект, к которому будет привязана переданная функция, или NULL для отсоединения функции от ее текущего объекта.

newscope

Область видимости класса, с которой ассоциируется замыкание, или 'static' для сохранения текущей области видимости. Если передан объект, то будет использован его класс. Этот параметр определяет видимость protected (защищенных) и private (закрытых) методов привязанного объекта.

Возвращаемые значения

Возвращает новый объект Closure или FALSE в случае возникновения ошибки

Примеры

Пример #1 Пример Closure::bind()

<?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";
?>

Результатом выполнения данного примера будет что-то подобное:

1
2

Смотрите также

Коментарии

Автор:
With this class and method, it's possible to do nice things, like add methods on the fly to an object.

MetaTrait.php
<?php
trait MetaTrait
{
   
    private 
$methods = array();
 
    public function 
addMethod($methodName$methodCallable)
    {
        if (!
is_callable($methodCallable)) {
            throw new 
InvalidArgumentException('Second param must be callable');
        }
       
$this->methods[$methodName] = Closure::bind($methodCallable$thisget_class());
    }
 
    public function 
__call($methodName, array $args)
    {
        if (isset(
$this->methods[$methodName])) {
            return 
call_user_func_array($this->methods[$methodName], $args);
        }
 
        throw 
RunTimeException('There is no method with the given name to call');
    }
 
}
?>

test.php
<?php
require 'MetaTrait.php';
 
class 
HackThursday {
    use 
MetaTrait;
 
    private 
$dayOfWeek 'Thursday';
 
}
 
$test = new HackThursday();
$test->addMethod('when', function () {
    return 
$this->dayOfWeek;
});
 
echo 
$test->when();

?>
2012-12-14 02:08:20
http://php5.kiev.ua/manual/ru/closure.bind.html
If you need to validate whether or not a closure can be bound to a PHP object, you will have to resort to using reflection.

<?php

/**
 * @param \Closure $callable
 *
 * @return bool
 */
function isBindable(\Closure $callable)
{
   
$bindable false;

   
$reflectionFunction = new \ReflectionFunction($callable);
    if (
       
$reflectionFunction->getClosureScopeClass() === null
       
|| $reflectionFunction->getClosureThis() !== null
   
) {
       
$bindable true;
    }

    return 
$bindable;
}
?>
2014-12-03 22:22:39
http://php5.kiev.ua/manual/ru/closure.bind.html

    Поддержать сайт на родительском проекте КГБ