本文整理汇总了PHP中Closure类的典型用法代码示例。如果您正苦于以下问题:PHP Closure类的具体用法?PHP Closure怎么用?PHP Closure使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Closure类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getServiceInstance
/**
* Get service instance
*
* @param ServiceLocatorInterface $serviceLocator Service Locator instance
* @return mixed
*/
public function getServiceInstance(ServiceLocatorInterface $serviceLocator)
{
if ($this->instance === null) {
/**
* Instance must be created using factory
*/
if ($this->factory instanceof \Closure) {
$instance = call_user_func($this->factory, $serviceLocator);
} else {
$instance = $this->factory->factory($serviceLocator);
}
if (!$this->isShared()) {
return $instance;
// new instance must be returned
} else {
$this->instance = $instance;
// cache instance
return $this->instance;
// same instance must be returned
}
} else {
/**
* Instance either was passed directly or has been created earlier
*/
if (!$this->isShared()) {
return $this->instance;
// new instance must be returned
} else {
return clone $this->instance;
// same instance must be returned
}
}
}
示例2: testCorrect
/**
* @param string $type
* @param \Closure $generateImage
* @param \Closure $checkOutput
* @param array $logLevels
* @dataProvider imageProvider
*/
public function testCorrect(string $type, \Closure $generateImage, \Closure $checkOutput, array $logLevels = [])
{
$validator = new ImageValidator($type, '');
$validator->setLogger($this);
$checkOutput->call($this, $validator->correct($generateImage()));
$this->assertEquals($logLevels, $this->logLevels);
}
示例3: on
public function on($event, \Closure $callback)
{
if (is_string($event)) {
$this->events[$event] = $callback->bindTo($this, $this);
}
return $this;
}
示例4: proceed
/**
* Invokes original method and return result from it
*
* @return mixed
*/
public function proceed()
{
if (isset($this->advices[$this->current])) {
/** @var $currentInterceptor \Go\Aop\Intercept\Interceptor */
$currentInterceptor = $this->advices[$this->current++];
return $currentInterceptor->invoke($this);
}
// Fill the closure only once if it's empty
if (!$this->closureToCall) {
$this->closureToCall = $this->reflectionMethod->getClosure($this->instance);
}
// Rebind the closure if instance was changed since last time
if ($this->previousInstance !== $this->instance) {
$this->closureToCall = $this->closureToCall->bindTo($this->instance, $this->reflectionMethod->class);
$this->previousInstance = $this->instance;
}
$closureToCall = $this->closureToCall;
$args = $this->arguments;
switch (count($args)) {
case 0:
return $closureToCall();
case 1:
return $closureToCall($args[0]);
case 2:
return $closureToCall($args[0], $args[1]);
case 3:
return $closureToCall($args[0], $args[1], $args[2]);
case 4:
return $closureToCall($args[0], $args[1], $args[2], $args[3]);
case 5:
return $closureToCall($args[0], $args[1], $args[2], $args[3], $args[4]);
default:
return forward_static_call_array($closureToCall, $args);
}
}
示例5: get
public function get()
{
if (!$this->closure instanceof \Closure) {
throw new \RuntimeException("Cannot get a key with an undefined closure");
}
if ($this->enabled) {
$data = $this->predis->get($this->getKeyName($this->key));
}
if ($data === null) {
$boundCallback = $this->closure->bindTo($this);
$data = $boundCallback();
if ($this->enabled) {
$this->predis->setex($this->getKeyName($this->key), $this->ttl, serialize($data));
}
if ($this->onMiss instanceof \Closure) {
call_user_func_array($this->onMiss, [$this, $data]);
}
return $data;
} else {
$value = unserialize($data);
if ($this->onHit instanceof \Closure) {
call_user_func_array($this->onHit, [$this, $value]);
}
return $value;
}
}
示例6: __construct
/**
* Constructs a Spec, to be associated with a particular suite, and ran
* by the test runner. The closure is bound to the suite.
*
* @param string $title A title to be associated with the spec
* @param \Closure $closure The closure to invoke when the spec is called
* @param Suite $suite The suite within which this spec was defined
*/
public function __construct($title, \Closure $closure = null, Suite $suite)
{
$this->title = $title;
$this->suite = $suite;
if ($closure) {
$this->closure = $closure->bindTo($suite);
}
}
示例7: myCapture
function myCapture(Closure $closure)
{
ob_start();
$closure->__invoke();
$contents = ob_get_contents();
ob_end_clean();
return $contents;
}
示例8: fingerprint
public function fingerprint(\Closure $fingerprint = null)
{
if (func_num_args() > 0) {
$this->_fingerprint = $fingerprint->bindTo($this);
return $this;
}
return $this->_fingerprint;
}
示例9: add
/**
* Registers a route.
*
* @param string $name
* @param \Closure $handler
*
* @return Route
*/
public function add($name, \Closure $handler)
{
// Bind the handler to the Router class
$route = new Route($name, $handler->bindTo($this, $this));
// Insert the route
$this->routes[$name] = $route;
return $route;
}
示例10: group
/**
* @param string $prefix
* @param \Closure $closure
*/
public function group($prefix, \Closure $closure)
{
$original = $this->prefix;
$this->prefix = sprintf('/%s/%s', trim($original, '/'), trim($prefix, '/'));
$callback = $closure->bindTo($this);
$callback();
$this->prefix = $original;
}
示例11: __construct
public function __construct(\Closure $closure, Suite $suite)
{
$this->suite = $suite;
if (version_compare(PHP_VERSION, '5.4.0', '>=')) {
$this->closure = $closure->bindTo($suite);
} else {
$this->closure = $closure;
}
}
示例12: fetch
/**
* Retrieves data by key or executes $callback in case of cache miss. Data returned
* by $callback is then cached.
*
* \rox\Cache::fetch('my_key', '+1 hour', function(){
* // some expensive operation
* return $results;
* });
*
* @param string $key
* @param string $expires expiration time in seconds or strtotime() compatible string
* @param \Closure $callback closure to be executed on cache miss
* @return mixed
*/
public static function fetch($key, $expires, \Closure $callback)
{
$data = static::read($key);
if ($data === false) {
$data = $callback->__invoke();
static::write($key, $data, $expires);
}
return $data;
}
示例13: __invoke
/**
* {@inheritdoc}
*/
public function __invoke($input, $index)
{
/** @noinspection PhpMethodParametersCountMismatchInspection */
/** @noinspection PhpMethodParametersCountMismatchInspection */
/** @noinspection PhpVoidFunctionResultUsedInspection */
return $this->function->__invoke($input, $index);
}
示例14: entityManager
public static final function entityManager()
{
if (self::$entityManager === null) {
self::$entityManager = self::$entityManagerFactory->__invoke();
}
return self::$entityManager;
}
示例15: evaluate
/**
* Evaluates the underyling closure and returns its result.
*
* The given Options instance is passed to the closure as first argument.
* The previous default value set in the constructor is passed as second
* argument.
*
* @param Options $options The container with all concrete options.
*
* @return mixed The result of the closure.
*/
public function evaluate(Options $options)
{
if ($this->previousValue instanceof self) {
$this->previousValue = $this->previousValue->evaluate($options);
}
return $this->closure->__invoke($options, $this->previousValue);
}