Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码抛出异常“无效的 SQL 表达式类型 'list'”:
$condition = 'id IN(1,2,4)'; Model::find($condition);
我不敢相信 phalcon 不支持这一点。设置此规则的正确方法是什么?
要设置此规则,我们只需将 ids 列表设置为 key => value:
$ids = [1,2,3]; Model::find(['id' => $ids]);
希望这对某人有帮助。
UPD:这不起作用,数字不应该是数组,而是字符串:
Model::find('id IN (1,2,3,4)');
这种构造存在一个错误,但在 0.8.0 版本中已修复。