闭包函数可以传递第二个参数么?
在实际开发中查询条件是获取的一个变量,可以用闭包的方式查询么?
例如这样
$pic = $album::all(function($query,$username){
$query->where(['albumid'=>$username]);
});
我试了一下,报错
Missing argument 2 for app\index\controller\Index::app\index\controller\{closure}()
还请老师指点一下