我正在与MLS服务器交谈,我很确定我在使用它。它只是不会给我任何数组。
我成功登录了
我拉了清单列表这里有两个你可能需要知道的。
[LIST_10] =>开始日期
[LIST_15] =>状态
这有效
if($connect) {
/* Get table layout */
$fields = $rets->SearchQuery("Property", "A");
/* Take the system name / human name and place in an array */
$table = array();
foreach($fields as $field) {
$table[$field['SystemName']] = $field['LongName'];
}
/* Display output */
print_r($table);
$rets->Disconnect();
}
}
返回0记录
if($connect) {
$sixmonths = date('c', time()-15778800); // get listings updated within last 6 months
/* Search RETS server */
$search = $rets->SearchQuery(
'Property', // Resource
"A", // Class
'((LIST_10>='.$sixmonths.'+),(LIST_15=ACT))', // DMQL, with SystemNames
array(
'Format' => 'COMPACT-DECODED',
'Select' => 'LIST_0,LIST_1,LIST_34,LIST_39,LIST_40,LIST_0,LIST_133',
'Count' => 1,//0 no record count, data 1 record count + data 2 record count, no data
'Limit' => 20
)
);
/* If search returned results */
if($rets->TotalRecordsFound() > 0) {
while($data = $rets->FetchRow($search)) {
print_r($data);
}
}
}
我正在使用本教程:http://dangodesign.net/2013/01/getting-started-with-rets-for-php/ 是否有任何信息可以帮助更多?
答案 0 :(得分:1)
从以下位置更改您的DMQL:
'((LIST_10>='.$sixmonths.'+),(LIST_15=ACT))'
要:
'((LIST_10='.$sixmonths.'+),(LIST_15=ACT))'
您不需要>在您的查询中签名,这是+符号的含义。我发现这个网站对DMQL查询有一个很好的介绍:FlexMLS
如果您能够与PHPRETS连接,那么您只需尝试更改以下查询并尝试处理结果。
您能否在某处在线粘贴元数据?
答案 1 :(得分:0)
从以下位置更改您的DMQL:
'((LIST_10>='.$sixmonths.'+),(LIST_15=ACT))'
为:
'(LIST_10>={$sixmonths}+),(LIST_15=ACT)'
还要确保字段名称正确并尝试使用标准名称而不是系统名称。