联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
\Phpcmf\Service::M()中where怎么加或者条件
类型:迅睿CMS 更新时间:2023-09-18 09:02:09
$rt = \Phpcmf\Service::M()->table_site("organization")->where('organization_id',$value)->getRow()

where怎么加或者条件,像下面这样写也不行

$rt = \Phpcmf\Service::M()->table_site("organization")->where('organization_id'===$value or 'branch'===$value)->getRow();


回帖
  • 开源社区技术-罗老师
    #1楼    开源社区技术-罗老师
    2023-09-16 23:59:59
    Chrome 0
    where('organization_id="'.$value.'" or branch = "'.$value.'"')
    你要结合php语法把他组合成sql语句,你那样写连php都无法通过,php基础不熟悉
  • Jeffery
    #2楼    Jeffery
    2023-09-18 09:02:09
    Chrome 0
    https://www.xunruicms.com/doc/207.html 3、设置where条件
    $this->where("直接写条件");
    $this->where("字段", "值");