我对 Laravel 4 查询生成器有疑问,我想做一个可重用的方法
public function getData($where=array())
{
// $where = array('city' => 'jakarta', 'age' => '25');
return User::where($where)->get();
// this will produce an error, because i think laravel didn't support it
}
在 CodeIgniter 中很容易将数组传递给活动记录:
public function getData($where=array())
{
$rs = $this->db->where($where)->from('user')->get();
return $rs->result();
}
// it will produce :
// SELECT * FROM user WHERE city = 'jakarta' AND age = '25'
知道如何在 Laravel 4 查询生成器上使用它吗?我有谷歌搜索但没有找到任何答案。之前谢谢。