函数闭包测试
private function executeX($str = '')
{
$str2 = 'abcdefg';
return function($str) use ($str2) {
echo $str2.','.$str;
};
}
/**
* 测试内容:测试方法闭包输出内容
* 结论:abcdefg,123
*/
public function actionTestClosure()
{
$a = $this->executeX();
$a('123');
}
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭