Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPクロージャーと少し混乱しています。誰かが私のためにこれをクリアできますか:
// Sample PHP closure my_method(function($apples) use ($oranges) { // Do something here });
$applesとと の違いは何$orangesですか? それぞれをいつ使用する必要がありますか?
$apples
$oranges
$applesに引数として渡され、my_method内部$orangesに注入されます。
my_method