ReflectionFunctionAbstract::isClosure

(PHP 5 >= 5.3.0)

ReflectionFunctionAbstract::isClosureChecks if closure

Опис

public bool ReflectionFunctionAbstract::isClosure ( void )

Checks whether the reflected function is a Closure.

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

Returns TRUE if the function is a Closure, otherwise FALSE.

Приклади

Приклад #1 ReflectionFunctionAbstract::isClosure() example

<?php
// Non-closure
$function1 'str_replace';
$reflection1 = new ReflectionFunction($function1);
var_dump($reflection1->isClosure());

// Closure
$function2 = function () {};
$reflection2 = new ReflectionFunction($function2);
var_dump($reflection2->isClosure());
?>

Наведений вище приклад виведе:

bool(false)
bool(true)

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top