我在php中使用隐藏框架为我的iPhone应用程序编写Web服务。我使用如下代码来获取我给出的数组中的国家/地区的记录,
$testtable = new testTable();
$countryArray = $decoded_params["country"];
$records = $testtable->in('country', $countryArray);
但是当我使用这些代码时,发生了一个错误,即不存在关系“in”。有人遇到过这个问题?如果我所做的是错的,我怎么能进行“in”查询呢?感谢。
答案 0 :(得分:0)
我很确定这是在某些时候添加的。
您最好的选择是从github repo克隆最新版本 - https://github.com/recess/recess
你也可以试试这个:
$records = $testtable->in('country', implode(',',$countryArray));