The example in this article describes how to pass parameters to PHP closure functions and use external variables. Share it with everyone for your reference, the details are as follows:
Write two methods in the Laravel controller, one is to create a closure function internally, and the other is to execute the passed closure function, test the writing method of closure, and use external Variables, and parameters passed to closure functions. As follows:
//测试闭包传参及use使用外部变量 public function testClosure($t1, $t2) { $closure = function ($param1, $param2) use ($t1, $t2) { echo $param1.$param2.$t1.$t2; }; $this->execClosure('test.closure', $closure); } //执行闭包函数 protected function execClosure($name, Closure $closure) { echo 'Closure func name:'.$name; echo '<br>'; $closure('p1', 'p2'); }
Add routes in routes.php:
Copy the code The code is as follows:
Route::get('/test/closure/{t1}/{t2}',['uses '=>'TestController@testClosure']);
Visit www.example.com/test/closure/hehe1/hehe2
Browser output:
Closure func name:test.closure p1p2hehe1hehe2
Reprinted from: Xiaotan Blog http:// www.tantengvip.com/2016/03/php-closure-use/
Readers who are interested in more PHP-related content can check out this site’s special topic: "Summary of PHP Office Document Skills (including word, excel, access, ppt) )", "php date and time usage summary", "php object-oriented programming introductory tutorial", "php string (string) usage summary", "php+mysql database operation introductory tutorial" and "php common database operation skills summary" 》
I hope this article will be helpful to everyone in PHP programming.
The above introduces the methods of passing parameters and using external variables in PHP closure functions, including all aspects. I hope it will be helpful to friends who are interested in PHP tutorials.