联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
程序不支持$ids = [1,2,3,4,5]->where_in('id',ids);这种写法吗
类型:迅睿CMS 更新时间:2022-04-15 09:21:16


程序不支持

$ids = [1,2,3,4,5]
->where_in('id',ids);

这种写法吗

回帖
  • 可乐仙人
    #1楼    可乐仙人
    2022-04-15 08:51:45
    Chrome 0
    where_in('id',$ids);
  • 芝麻通
    #2楼    芝麻通
    2022-04-15 08:54:17
    Chrome 0
    可乐仙人 嗯是这个
    $childids = '1,390,392,394,395,396,397,398,399,400,401,402,403,404,405,406,407';
    $data->where_in('xmwz',$childids);
    但是看着没效果的
  • 芝麻通
    #3楼    芝麻通
    2022-04-15 08:55:02
    Chrome 0
    可乐仙人 提示
    Call to undefined method CodeIgniter\\Database\\MySQLi\\Builder::where_in()<br>/home/wwwroot/xunrui.rdcms.com/dayrui/App/Gongshi/Controllers/Home.php(62)
  • 小孟学编程
    #4楼    小孟学编程
    2022-04-15 09:19:08
    Chrome 0
    $childids = '1,390,392,394,395,396,397,398,399,400,401,402,403,404,405,406,407';
    $data->where('xmwz in ('.$childids.')');
    满意答案
  • 芝麻通
    #5楼    芝麻通
    2022-04-15 09:21:16
    Chrome 0
    @小孟学编程:多谢 解决了