在PHP中,闭包(Closure)是一种可以捕获其定义时所在作用域中的变量并在稍后执行的匿名函数。以下是创建和使用闭包的示例:
<?php
function outerFunction() {
$message = "Hello, I am outside the closure.";
// 创建一个闭包,捕获外部作用域中的$message变量
$closure = function () use ($message) {
echo $message;
};
// 调用闭包
$closure(); // 输出: Hello, I am outside the closure.
}
outerFunction();
?>
在这个例子中,我们首先定义了一个名为outerFunction
的函数。在该函数内部,我们声明了一个名为$message
的变量。然后,我们创建了一个闭包,并使用use
关键字捕获了外部作用域中的$message
变量。最后,我们调用了闭包,它输出了捕获到的$message
变量的值。