gpt4 book ai didi

php cake find() 使用 OR 条件

转载 作者:行者123 更新时间:2023-12-02 07:22:00 24 4
gpt4 key购买 nike

我在 php cake 的 if else 条件中需要一个基本的“或”。

$oTourRecords =  $this->Record->find('all', array(
'conditions' => array(
'record.builder_name' => 'rey',
'or' => array(
'record.builder_name' => 'norbert',
)
)
)
);

基本上我需要知道记录是否包含 builder_name = rey 或“norbert”这个返回 null。

最佳答案

尝试

$oTourRecords =  $this->Record->find('all', array(
'conditions' => array(
'OR' => array(
'record.builder_name' => 'norbert',
'record.builder_name' => 'rey',
)
)
));

关于php cake find() 使用 OR 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43085797/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com