要根据当前日期过滤列表。因此我只能获取当前日期的数据。
我使用StartTimeFrom尝试了以下操作,但未做任何更改,它显示了所有记录。
答案 0 :(得分:0)
eBay documentation指示StartTimeFrom是一个dateTime
字段。他们的documentation of dateTime说这是ISO8601格式的日期。 PHP的date documentation表示'c'是获得ISO8601时间的格式字符。
因此,只需添加$start_string = date('c', $start_time);
,其中$start_time
被假定为所需开始时间的UNIX时间戳(例如,您可以从PHP's strtotime或MySQL's UNIX_TIMESTAMP获得) ),然后在您的网址中插入&itemFilter(1).name=StartTimeFrom&itemFilter(1).value=$start_string
。