我正在使用 php 中的凹槽框架为我的 iPhone 应用程序编写 Web 服务。我正在使用如下代码来获取我给的数组中那个国家的记录,
$testtable = new testTable();
$countryArray = $decoded_params["country"];
$records = $testtable->in('country', $countryArray);
但是当我使用这些代码说“in”关系不存在时发生了错误。有人遇到过这个问题吗?如果我做错了,我怎么能做一个“in”查询?谢谢。