以下是几个例子,可以帮助你更好地理解 PHP 闭包:
$greeting = function ($name) {
echo "Hello, $name!";
};
$greeting('John'); // 输出:Hello, John!
2. 闭包中使用外部变量:
```php
$counter = 0;
$increment = function () use (&$counter) {
$counter++;
echo $counter;
};
$increment(); // 输出:1
$increment(); // 输出:2
function performOperation($callback) {
$callback();
}
$greeting = function () { echo "Hello, world!"; };
performOperation($greeting); // 输出:Hello, world!
4. 闭包作为返回值:
```php
function createMultiplier($factor) {
return function ($number) use ($factor) {
return $number * $factor;
};
}
$double = createMultiplier(2);
echo $double(5); // 输出:10
这些例子展示了 PHP 闭包的一些常见用法,包括基本语法、使用外部变量、作为参数传递和作为返回值。通过使用闭包,你可以更灵活地处理函数和变量之间的关系。
上一篇:巧用 PHP 数组函数
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站