질문 : PHP에서 클로저 란 무엇이며 왜 "사용"식별자를 사용합니까? 일부 PHP 5.3.0 기능을 확인하고 사이트에서 꽤 재미있게 보이는 일부 코드를 실행했습니다. public function getTotal($tax) { $total = 0.00; $callback = /* This line here: */ function ($quantity, $product) use ($tax, &$total) { $pricePerItem = constant(__CLASS__ . "::PRICE_" . strtoupper($product)); $total += ($pricePerItem * $quantity) * ($tax + 1.0); }; array_walk($this->products, $callback);..