0

我正在使用 php 中的凹槽框架为我的 iPhone 应用程序编写 Web 服务。我正在使用如下代码来获取我给的数组中那个国家的记录,

 $testtable = new testTable();
 $countryArray = $decoded_params["country"];
 $records = $testtable->in('country', $countryArray);

但是当我使用这些代码说“in”关系不存在时发生了错误。有人遇到过这个问题吗?如果我做错了,我怎么能做一个“in”查询?谢谢。

4

1 回答 1

0

我很确定这是在某个时候添加的。

你最好的选择是从 github repo 克隆最新版本 - https://github.com/recess/recess

你也可以试试这个:

$records = $testtable->in('country', implode(',',$countryArray));
于 2012-05-31T19:30:43.887 回答