在函数中使用关键字 - PHP
2022-08-30 08:15:17
我一直在研究PHP中的闭包,这就是引起我注意的地方:
public function getTotal($tax)
{
$total = 0.00;
$callback =
function ($quantity, $product) use ($tax, &$total)
{
$pricePerItem = constant(__CLASS__ . "::PRICE_" .
strtoupper($product));
$total += ($pricePerItem * $quantity) * ($tax + 1.0);
};
array_walk($this->products, $callback);
return round($total, 2);
}
有人请给我一个关于这个代码中用法的解释。use
function ($quantity, $product) use ($tax, &$total)
当我在PHP中搜索时,它会在命名空间中使用关键字,但在这里它看起来不同。use
use
谢谢。