0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

PHP:無名関数:無名関数ではuseキーワードを使うと親スコープの変数が使えてしまう

Last updated at Posted at 2023-02-24

奇妙な無名関数の中の一つのオプション。
無名関数だけでは親のスコープの変数を取得することはできない。
そこでuseキーワードのオプションを使うと使えてしまうので便利。
無名関数やアロー関数は奇妙だが便利。便利だが奇妙。

useキーワードで奇妙なのが以下。

  • function() に use(変数名) と繋げて書く仕様なこと

書いても慣れない奇妙さ。

$times = 3;
$numbers = [1, 2, 3];
// useキーワードによって親スコープの値が使える
array_map(function($num) use ($times) {
	return $num * $times;
}, $numbers);
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?