php什么时候使用闭包

发布时间:2024-03-09
php中的闭包的使用场景有:在动态调用静态类时,在callback函数中使用,赋值给一个普通的变量,使用use从父域中继承以及传递参数时
闭包函数
匿名函数,也叫闭包函数(closures),允许 临时创建一个没有指定名称的函数。最经常用作回调函数(callback)参数的值。当然也有其它应用的情况。
使用场景
动态调用静态类的时候
<?php class test { public static function getinfo() { var_dump(func_get_args()); } } call_user_func(array('test', 'getinfo'), 'hello world');在callback函数中使用
<?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'); ?>使用use从父域中继承
<?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'); });
上一个:ohmite(领先制造商为您打造最可靠的电子元件产品)
下一个:离婚时该如何分割婚后贷款购买的房产

德国mr品牌介绍
RC-01W4873FT_F 0201 487K现货购买,风华 0201 487KΩ ±1% 1/20W
全民k歌听不到自己唱的声音怎么设置(全民k歌听不到自己唱的)
戴尔灵越5490平板模式(戴尔灵越5000平板模式可以触屏吗)
三星note 3怎么看电子书,三星note2已经在手机里的小说怎么打开
怎么看自己电脑序列号,如何查询自己电脑的序列号
为什么编码器可以在自动化行业中得到广泛应用?
windows7如何设置兼容性(w7兼容性设置在哪里)
花灌木常用修剪的方法
三星a9高配版参数图片(三星a9系列)