Codeigniter根据字符串列查询数组数据

时间:2017-11-05 15:27:52

标签: php mysql arrays codeigniter

我有像这样的player_pos栏:

player_column column

所以想要查询数据,例如我是否有类似的数组 player_pos = array('LCV', 'RCV') 我想让每个有价值LCV和RCV的用户成为player_pos。 如何使用Codeigniter进行操作?

1 个答案:

答案 0 :(得分:0)

foreach($player_pos as $pos){
    $this->db->like('player_pos',$pos);
}

我觉得很愚蠢:)