标签: php mysql arrays codeigniter
我有像这样的player_pos栏:
所以想要查询数据,例如我是否有类似的数组 player_pos = array('LCV', 'RCV') 我想让每个有价值LCV和RCV的用户成为player_pos。 如何使用Codeigniter进行操作?
player_pos = array('LCV', 'RCV')
答案 0 :(得分:0)
foreach($player_pos as $pos){ $this->db->like('player_pos',$pos); }
我觉得很愚蠢:)