通常是这么写的,但是如果
$map['status'] = 1;
$map['status1'] = 1;
$map['status2'] = 1;
是or的话,该如何写
$User = M("User"); // 实例化User对象
$map['name'] = 'thinkphp';
$map['status'] = 1;
$map['status1'] = 1;
$map['status2'] = 1;
// 把查询条件传入查询方法
$User->where($map)->select();