对于
PHP中的LINQ,我使用了
https://github.com/Athari/YaLinqo
我不知道如何在where子句中传递变量.
public function filter($arr, $find) {
Enumerable::from($arr)->where(function($val) { return stripos($val->item, $find) > -1; })->toArray();
}
似乎没有像$find那样定义,但我将它作为方法的参数发送.
最佳答案 你可以使用use语句:
Enumerable::from($arr)
->where(function($val) use ($find) {
return stripos($val->item, $find) > -1;
})
->toArray();