PHP でのクロージャの使用シナリオは次のとおりです: 1. 静的クラスを動的に呼び出すとき; 2. コールバック関数で使用; 3. 通常の変数に代入; 4. use を使用して親ドメインから継承します。 5. パラメータ等を渡す場合
php でのクロージャの使用シナリオは次のとおりです。静的クラスを動的に呼び出す場合、それをコールバック関数で使用し、それを通常の変数に代入し、使用します。親ドメインから継承してパラメーターを渡す場合
クロージャー関数
クロージャー関数 (クロージャー) とも呼ばれる匿名関数により、一時的な名前が指定されていない関数。コールバック関数の引数として最も一般的に使用される値。もちろん、他のアプリケーションもあります。
使用シナリオ
静的クラスを動的に呼び出す場合
<?php class test { public static function getinfo() { var_dump(func_get_args()); } } call_user_func(array('test', 'getinfo'), 'hello world');
コールバック関数で使用
<?php //eg array_walk array_map preg_replace_callback etc echo preg_replace_callback('~-([a-z])~', function ($match) { return strtoupper($match[1]); }, 'hello-world'); // 输出 helloWorld ?>
通常の変数に値を代入します
<?php $greet = function($name) { printf("Hello %s\r\n", $name); }; $greet('World'); $greet('PHP'); ?>
親ドメインから継承するために使用します
<?php $message = 'hello'; // 继承 $message $example = function () use ($message) { var_dump($message); }; echo $example(); // Inherit by-reference $example = function () use (&$message) { var_dump($message); }; echo $example(); // The changed value in the parent scope // is reflected inside the function call $message = 'world'; echo $example();
パラメータを渡す
<?php $example = function ($arg) use ($message) { var_dump($arg . ' ' . $message); }; $example("hello");
OOでの使用
<?php class factory{ private $_factory; public function set($id,$value){ $this->_factory[$id] = $value; } public function get($id){ $value = $this->_factory[$id]; return $value(); } } class User{ private $_username; function __construct($username="") { $this->_username = $username; } function getUserName(){ return $this->_username; } } $factory = new factory(); $factory->set("zhangsan",function(){ return new User('张三'); }); $factory->set("lisi",function(){ return new User("李四"); }); echo $factory->get("zhangsan")->getUserName(); echo $factory->get("lisi")->getUserName();
関数での呼び出し
<?php function call($callback){ $callback(); } call(function() { var_dump('hell world'); });
以上がPHPでクロージャを使用する場合の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。